mirror of
https://github.com/tnn2/esp-idf-libssh.git
synced 2026-02-04 20:30:38 +09:00
14 lines
446 B
C
14 lines
446 B
C
void initialize_wifi(void);
|
|
void wifi_sta_join(const char* ssid, const char* pass);
|
|
void start_sshd(void);
|
|
|
|
struct interactive_session {
|
|
void (*is_handle_char_from_remote)(struct interactive_session *, char);
|
|
void (*is_handle_char_from_local)(struct interactive_session *, char);
|
|
void *is_data;
|
|
};
|
|
|
|
void minicli_handle_command(struct interactive_session *, const char *);
|
|
void minicli_begin_interactive_session(struct interactive_session *);
|
|
|