2026-03-16 13:22:59 -07:00
|
|
|
#ifndef CLIENT_H
|
|
|
|
|
#define CLIENT_H
|
2026-03-16 14:01:34 -07:00
|
|
|
#include "../ssh_server_client.h"
|
2026-03-16 13:22:59 -07:00
|
|
|
|
2026-03-16 14:01:34 -07:00
|
|
|
typedef struct {} client;
|
|
|
|
|
|
|
|
|
|
int client_auth(void* userdata);
|
|
|
|
|
|
|
|
|
|
int client_init(void*);
|
|
|
|
|
|
|
|
|
|
int client_update(ssh_terminal_data* td, void*);
|
|
|
|
|
|
|
|
|
|
int client_stop(void*);
|
2026-03-16 13:22:59 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|