projects
/
l2tpns.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
off by one
[l2tpns.git]
/
l2tpns.c
diff --git
a/l2tpns.c
b/l2tpns.c
index
9e9b34a
..
e0e3cf2
100644
(file)
--- a/
l2tpns.c
+++ b/
l2tpns.c
@@
-4,7
+4,7
@@
// Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced
// vim: sw=8 ts=8
// Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced
// vim: sw=8 ts=8
-char const *cvs_id_l2tpns = "$Id: l2tpns.c,v 1.10
3 2005/05/13 01:29:40
bodea Exp $";
+char const *cvs_id_l2tpns = "$Id: l2tpns.c,v 1.10
4 2005/05/16 04:51:16
bodea Exp $";
#include <arpa/inet.h>
#include <assert.h>
#include <arpa/inet.h>
#include <assert.h>
@@
-1566,7
+1566,7
@@
void sendipcp(tunnelidt t, sessionidt s)
if (!q) return;
*q = ConfigReq;
if (!q) return;
*q = ConfigReq;
- q[1] = r
<<
RADIUS_SHIFT; // ID, dont care, we only send one type of request
+ q[1] = r
>>
RADIUS_SHIFT; // ID, dont care, we only send one type of request
*(uint16_t *) (q + 2) = htons(10);
q[4] = 3;
q[5] = 6;
*(uint16_t *) (q + 2) = htons(10);
q[4] = 3;
q[5] = 6;
@@
-1588,7
+1588,7
@@
void sendipcp(tunnelidt t, sessionidt s)
if (!q) return;
*q = ConfigReq;
if (!q) return;
*q = ConfigReq;
- q[1] = r
<<
RADIUS_SHIFT; // ID, don't care, we
+ q[1] = r
>>
RADIUS_SHIFT; // ID, don't care, we
// only send one type
// of request
*(uint16_t *) (q + 2) = htons(14);
// only send one type
// of request
*(uint16_t *) (q + 2) = htons(14);
@@
-4005,7
+4005,7
@@
static void update_config()
if (!config->numradiusservers)
LOG(0, 0, 0, "No RADIUS servers defined!\n");
if (!config->numradiusservers)
LOG(0, 0, 0, "No RADIUS servers defined!\n");
- config->num_radfds =
2
<< RADIUS_SHIFT;
+ config->num_radfds =
1
<< RADIUS_SHIFT;
// parse radius_authtypes_s
config->radius_authtypes = config->radius_authprefer = 0;
// parse radius_authtypes_s
config->radius_authtypes = config->radius_authprefer = 0;