diff options
author | Brian Somers <brian@FreeBSD.org> | 2002-04-16 23:57:09 +0000 |
---|---|---|
committer | Brian Somers <brian@FreeBSD.org> | 2002-04-16 23:57:09 +0000 |
commit | ff360cc91b8564829313e547b9827ce8850ea304 (patch) | |
tree | 5b0847031a0b3f8cbd6098a3ecd67ce4673d2eca /usr.sbin/ppp/command.c | |
parent | 28395f954370add28190612f942cbba9831df534 (diff) | |
download | src-ff360cc91b8564829313e547b9827ce8850ea304.tar.gz src-ff360cc91b8564829313e547b9827ce8850ea304.zip |
Make the way FSM options are processed easier to read by using structures
instead of u_char *.
The changes are cosmetic except:
RecvConfigAck() now displays the options that are being ACK'd
Huge (bogus) options sent from the peer won't cause an infinite loop
SendIdent and ReceiveIdent are displayed consistenlty with other FSM data
LCP AUTHPROTO options that aren't understood are NAK'd, not REJ'd
Notes
Notes:
svn path=/head/; revision=94894
Diffstat (limited to 'usr.sbin/ppp/command.c')
-rw-r--r-- | usr.sbin/ppp/command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/ppp/command.c b/usr.sbin/ppp/command.c index 0931684231d9..ab0f9cb1ce6c 100644 --- a/usr.sbin/ppp/command.c +++ b/usr.sbin/ppp/command.c @@ -164,7 +164,7 @@ #define NEG_MPPE 54 #define NEG_CHAP81 55 -const char Version[] = "3.0.1"; +const char Version[] = "3.0.2"; static int ShowCommand(struct cmdargs const *); static int TerminalCommand(struct cmdargs const *); |