17 lines
238 B
C
17 lines
238 B
C
#ifndef CLIENT_H
|
|
#define CLIENT_H
|
|
#include "../ssh_server_client.h"
|
|
|
|
typedef struct {} client;
|
|
|
|
int client_auth(void* userdata);
|
|
|
|
int client_init(void*);
|
|
|
|
int client_update(ssh_terminal_data* td, void*);
|
|
|
|
int client_stop(void*);
|
|
|
|
|
|
#endif
|