diff options
author | Hannes Reinecke <hare@suse.de> | 2022-04-11 17:28:29 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2022-04-22 14:52:30 +0200 |
commit | 7c8c91d808bbbfb4eab57a68fc73ccb32046b5f1 (patch) | |
tree | 245e601569cbbf34e33f666076a4687295a82eb9 /redir.h | |
parent | 9cf44be87fb50ce116e1cbfbff1fa3e8771c15a4 (diff) | |
download | amtterm-7c8c91d808bbbfb4eab57a68fc73ccb32046b5f1.tar.gz |
redir: reshuffle functions
Diffstat (limited to 'redir.h')
-rw-r--r-- | redir.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -66,13 +66,14 @@ int redir_connect(struct redir *r); int redir_start(struct redir *r); int redir_stop(struct redir *r); int redir_auth(struct redir *r); -int redir_recv(struct redir *r); int redir_sol_start(struct redir *r); int redir_sol_stop(struct redir *r); int redir_sol_send(struct redir *r, unsigned char *buf, int blen); +int redir_sol_recv(struct redir *r); int redir_ider_start(struct redir *r); int redir_ider_config(struct redir *r); int redir_ider_reset(struct redir *r); int redir_ider_stop(struct redir *r); int redir_ider_send(struct redir *r, unsigned char *buf, int blen); +int redir_ider_recv(struct redir *r); int redir_data(struct redir *r); |