diff channel.h @ 7:425ed5c20157

Chantype handling is sorted
author Matt Johnston <matt@ucc.asn.au>
date Wed, 02 Jun 2004 04:59:49 +0000
parents fe6bca95afa7
children 7f77962de998
line wrap: on
line diff
--- a/channel.h	Tue Jun 01 10:48:46 2004 +0000
+++ b/channel.h	Wed Jun 02 04:59:49 2004 +0000
@@ -81,7 +81,7 @@
 	int initconn; /* used for TCP forwarding, whether the channel has been
 					 fully initialised */
 
-	struct ChanType* type;
+	const struct ChanType* type;
 
 };
 
@@ -100,7 +100,8 @@
 void chancleanup();
 void setchannelfds(fd_set *readfd, fd_set *writefd);
 void channelio(fd_set *readfd, fd_set *writefd);
-struct Channel* newchannel(unsigned int remotechan, struct ChanType *type, 
+struct Channel* newchannel(unsigned int remotechan, 
+		const struct ChanType *type, 
 		unsigned int transwindow, unsigned int transmaxpacket);
 
 void recv_msg_channel_open();