23 lines
338 B
C
23 lines
338 B
C
#include "client.h"
|
|
#include <string.h>
|
|
#include <tart.h>
|
|
|
|
|
|
int client_auth(void* userdata);
|
|
|
|
int client_init(void* cli) {
|
|
return 0;
|
|
}
|
|
|
|
int client_update(ssh_terminal_data* td, void* cli) {
|
|
client* c = (client*)cli;
|
|
|
|
strcpy(td->outputBuffer, "testing 1212\n\r");
|
|
return 0;
|
|
}
|
|
|
|
int client_stop(void* cli) {
|
|
return 0;
|
|
}
|
|
|