summaryrefslogtreecommitdiffhomepage
path: root/session.h
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2004-06-03 16:45:53 +0000
committerMatt Johnston <matt@ucc.asn.au>2004-06-03 16:45:53 +0000
commit444dbb5364798925a3cacddba7b1bb3041e41a23 (patch)
treeac499ac58516073528397e2470fcf6c0dc6fe1d9 /session.h
parent513f947d62351e5af77676e20740232d753cd5b1 (diff)
- Reworked non-channel fd handling to listener.c
- More channel cleaning up --HG-- extra : convert_revision : 385ec76d0304b93e277d1cc193383db5fd773703
Diffstat (limited to 'session.h')
-rw-r--r--session.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/session.h b/session.h
index e372232..0cb2eaa 100644
--- a/session.h
+++ b/session.h
@@ -33,7 +33,7 @@
#include "channel.h"
#include "queue.h"
#include "runopts.h"
-#include "remotetcpfwd.h"
+#include "listener.h"
extern int sessinitdone; /* Is set to 0 somewhere */
extern int exitflag;
@@ -139,8 +139,8 @@ struct sshsession {
/* TCP forwarding - where manage listeners */
#ifndef DISABLE_REMOTETCPFWD
- struct TCPListener ** tcplisteners;
- unsigned int tcplistensize;
+ struct Listener ** listeners;
+ unsigned int listensize;
#endif
};