summaryrefslogtreecommitdiffhomepage
path: root/chansession.h
diff options
context:
space:
mode:
Diffstat (limited to 'chansession.h')
-rw-r--r--chansession.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/chansession.h b/chansession.h
index 4513b1a..924518b 100644
--- a/chansession.h
+++ b/chansession.h
@@ -50,6 +50,10 @@ struct ChanSess {
/* exit details */
struct exitinfo exit;
+
+ /* Used to set $SSH_CONNECTION in the child session.
+ Is only set temporarily before forking */
+ char *connection_string;
#ifndef DISABLE_X11FWD
struct Listener * x11listener;
@@ -60,7 +64,7 @@ struct ChanSess {
unsigned char x11singleconn;
#endif
-#ifndef DISABLE_AGENTFWD
+#ifdef ENABLE_SVR_AGENTFWD
struct Listener * agentlistener;
char * agentfile;
char * agentdir;
@@ -81,6 +85,7 @@ void cli_chansess_winchange();
#ifdef ENABLE_CLI_NETCAT
void cli_send_netcat_request();
#endif
+void cli_start_send_channel_request(struct Channel *channel, unsigned char *type);
void svr_chansessinitialise();
extern const struct ChanType svrchansess;