ssh_server.h
1 #pragma once 2 3 #include <config.h> 4 5 namespace programs::ssh_fingerprint { 6 void registerCmd(); 7 } 8 9 namespace services::sshd { 10 11 bool initialize(); 12 bool requestExit(); 13 14 #ifdef PIO_UNIT_TESTING 15 void test(); 16 #endif 17 18 }