changeset 564:fad3eb63b907

- Move netcat struct to where it stays in scope.
author Matt Johnston <matt@ucc.asn.au>
date Tue, 25 Aug 2009 05:24:18 +0000
parents 541ebf5bf0f6
children 1929bbe3fa84
files cli-chansession.c
diffstat 1 files changed, 9 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/cli-chansession.c	Thu Jul 30 15:15:12 2009 +0000
+++ b/cli-chansession.c	Tue Aug 25 05:24:18 2009 +0000
@@ -381,20 +381,20 @@
 
 #ifdef ENABLE_CLI_NETCAT
 
+const struct ChanType cli_chan_netcat = {
+	0, /* sepfds */
+	"direct-tcpip",
+	cli_init_stdpipe_sess, /* inithandler */
+	NULL,
+	NULL,
+	cli_closechansess
+};
+
 void cli_send_netcat_request() {
 
 	const unsigned char* source_host = "127.0.0.1";
 	const int source_port = 22;
 
-	const struct ChanType cli_chan_netcat = {
-		0, /* sepfds */
-		"direct-tcpip",
-		cli_init_stdpipe_sess, /* inithandler */
-		NULL,
-		NULL,
-		cli_closechansess
-	};
-
 	cli_opts.wantpty = 0;
 
 	if (send_msg_channel_open_init(STDIN_FILENO, &cli_chan_netcat)