// L2TPNS PPP Stuff
-char const *cvs_id_ppp = "$Id: ppp.c,v 1.29 2004-11-25 12:41:35 bodea Exp $";
+char const *cvs_id_ppp = "$Id: ppp.c,v 1.31 2004-11-27 05:19:53 bodea Exp $";
#include <stdio.h>
#include <string.h>
extern char hostname[];
extern u32 eth_tx;
extern time_t time_now;
-extern struct configt *config;
+extern configt *config;
static void initccp(tunnelidt t, sessionidt s);
// send CCP request for no compression for our end if not negotiated
if (!(session[s].flags & SF_CCP_ACKED))
- initccp();
+ initccp(t, s);
break;
}
// Send CCP request for no compression
-static void sendccp(tunnelidt t, sessionidt s)
+static void initccp(tunnelidt t, sessionidt s)
{
char b[500], *q;