diff options
author | brian <brian@FreeBSD.org> | 1998-10-26 19:07:39 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 1998-10-26 19:07:39 +0000 |
commit | 2879293691c94fd47031d654d9b7c5f3f788b9e8 (patch) | |
tree | 216fc6eef1bc31cb0b1f34cbcb377975a81831a9 /usr.sbin/ppp/ipcp.h | |
parent | 54882479aee399667951dbeca252bd5961bd7bd6 (diff) | |
download | FreeBSD-src-2879293691c94fd47031d654d9b7c5f3f788b9e8.zip FreeBSD-src-2879293691c94fd47031d654d9b7c5f3f788b9e8.tar.gz |
Add ``enable proxyall'' support. This adds proxy ARP entries
for every machine on every class C or smaller subnet that we
route to.
Add ``set {send,recv}pipe'' for controlling our socket buffer
sizes.
Mention the IP number with the problem in a few error messages.
All submitted by: Craig Leres <leres@ee.lbl.gov>
Modified slightly by: me
Diffstat (limited to 'usr.sbin/ppp/ipcp.h')
-rw-r--r-- | usr.sbin/ppp/ipcp.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.sbin/ppp/ipcp.h b/usr.sbin/ppp/ipcp.h index 39ea319..5b5fc9b 100644 --- a/usr.sbin/ppp/ipcp.h +++ b/usr.sbin/ppp/ipcp.h @@ -15,7 +15,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: ipcp.h,v 1.20 1998/08/26 17:39:37 brian Exp $ + * $Id: ipcp.h,v 1.21 1998/10/22 02:32:49 brian Exp $ * * TODO: */ @@ -57,6 +57,9 @@ struct ipcp { struct in_range peer_range; /* HISADDR spec */ struct iplist peer_list; /* Ranges of HISADDR values */ + u_long sendpipe; /* route sendpipe size */ + u_long recvpipe; /* route recvpipe size */ + struct in_addr TriggerAddress; /* Address to suggest in REQ */ unsigned HaveTriggerAddress : 1; /* Trigger address specified */ |