aboutsummaryrefslogtreecommitdiff
path: root/src/proxy.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/proxy.h')
-rw-r--r--src/proxy.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/proxy.h b/src/proxy.h
deleted file mode 100644
index 0e42bdc..0000000
--- a/src/proxy.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef PROXY_H_
-#define PROXY_H_
-
-#include <libssh/libssh.h>
-
-#include "session.h"
-
-/* A userdata struct for channel. */
-struct proxy_channel_data_struct {
- /* Event which is used to poll */
- ssh_event event;
- ssh_session my_session;
- ssh_channel my_channel;
- ssh_channel client_channel;
-};
-void handle_proxy_session(ssh_event event, ssh_session session, ssh_channel my_channel);
-
-#endif