byte ordering
This commit is contained in:
parent
de9bbde824
commit
5b30505fcf
2 changed files with 4 additions and 4 deletions
4
l2tpns.c
4
l2tpns.c
|
|
@ -4,7 +4,7 @@
|
||||||
// Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced
|
// Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced
|
||||||
// vim: sw=8 ts=8
|
// vim: sw=8 ts=8
|
||||||
|
|
||||||
char const *cvs_id_l2tpns = "$Id: l2tpns.c,v 1.139 2005-09-16 11:46:48 bodea Exp $";
|
char const *cvs_id_l2tpns = "$Id: l2tpns.c,v 1.140 2005-09-16 13:20:39 bodea Exp $";
|
||||||
|
|
||||||
#include <arpa/inet.h>
|
#include <arpa/inet.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
@ -2613,7 +2613,7 @@ void processudp(uint8_t *buf, int len, struct sockaddr_in *addr)
|
||||||
|
|
||||||
*q = ProtocolRej;
|
*q = ProtocolRej;
|
||||||
*(q + 1) = ++sess_local[s].lcp_ident;
|
*(q + 1) = ++sess_local[s].lcp_ident;
|
||||||
*(uint16_t *)(q + 2) = l;
|
*(uint16_t *)(q + 2) = htons(l);
|
||||||
*(uint16_t *)(q + 4) = htons(proto);
|
*(uint16_t *)(q + 4) = htons(proto);
|
||||||
memcpy(q + 6, p, l - 6);
|
memcpy(q + 6, p, l - 6);
|
||||||
|
|
||||||
|
|
|
||||||
4
ppp.c
4
ppp.c
|
|
@ -1,6 +1,6 @@
|
||||||
// L2TPNS PPP Stuff
|
// L2TPNS PPP Stuff
|
||||||
|
|
||||||
char const *cvs_id_ppp = "$Id: ppp.c,v 1.83 2005-09-16 05:20:32 bodea Exp $";
|
char const *cvs_id_ppp = "$Id: ppp.c,v 1.84 2005-09-16 13:20:39 bodea Exp $";
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
@ -459,7 +459,7 @@ static void ppp_code_rej(sessionidt s, tunnelidt t, uint16_t proto,
|
||||||
|
|
||||||
*q = CodeRej;
|
*q = CodeRej;
|
||||||
*(q + 1) = ++sess_local[s].lcp_ident;
|
*(q + 1) = ++sess_local[s].lcp_ident;
|
||||||
*(uint16_t *)(q + 2) = l;
|
*(uint16_t *)(q + 2) = htons(l);
|
||||||
memcpy(q + 4, p, l - 4);
|
memcpy(q + 4, p, l - 4);
|
||||||
|
|
||||||
LOG(2, s, t, "Unexpected %s code %s\n", pname, ppp_code(*p));
|
LOG(2, s, t, "Unexpected %s code %s\n", pname, ppp_code(*p));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue