summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ppp
Commit message (Collapse)AuthorAgeFilesLines
* Fix for NetBSD wherebrian2001-01-222-2/+4
| | | | | | | .Oc Oc .Xc doesn't seem to work....
* Handle SECDNS being rejected when PRIDNS is notbrian2001-01-221-2/+5
| | | | | Submitted by: OGAWA Takaya <t-ogawa@triaez.kaisei.org> PR: 24518
* Use fstat to check if descriptor 0 is a socket.brian2001-01-144-61/+102
| | | | Suggested by: julian
* Log the ``MPPE: MasterKey is invalid...'' message as a CCPbrian2000-12-291-1/+1
| | | | diagnostic rather than a warning.
* Prepare for mdoc(7)NG.ru2000-12-272-72/+72
|
* Add a missing dot.ru2000-12-152-2/+2
|
* Correct the documented default behaviour of mschap, mschap81 and MPPE.brian2000-12-152-6/+6
| | | | Pointed out by: Mark Knight <markk@knigma.org>
* mdoc(7) police: use canonical form of .Dd macro.ru2000-12-112-2/+2
|
* Mention the MTU in ``show iface''.brian2000-12-011-2/+2
|
* Call MSCHAP CHAP80 in ``show lcp'' so that it's consistent with CHAP81.brian2000-11-291-1/+1
|
* Use only the bit after the ``\'' when hashing the challenge inbrian2000-11-281-1/+1
| | | | | | MSChapv2 Submitted by: Ustimenko Semen <semen@iclub.nsu.ru>
* Add ``enable/disable tcpmssfixup'', defaulting to enabled.brian2000-11-2811-22/+245
| | | | | Suggested by: julian Hijacked from: ru (ports/net/tcpmssd)
* various typo and minor punctuation changes.ben2000-11-282-14/+14
| | | | | PR: 23111 Submitted by: Jimmy Olgeni <olgeni@uli.it>
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-202-32/+32
|
* Some gratuitous whitespace changes.brian2000-11-192-16/+22
|
* Describe how to tunnel properly.brian2000-11-192-8/+152
| | | | Requested by: Greg Quinlan <greg@macquarrie.com.au>
* Accept MSCHAPv2 by default.brian2000-11-193-2/+6
| | | | Enable and accept MPPE by default.
* Go back to populating data_len in struct ngpppoe_init_data.brian2000-11-161-2/+2
|
* Be a bit more precise about what ``nat deny_incoming yes'' does.brian2000-11-162-10/+36
|
* Increase M_MAXBUF so that it's greater than HDLCSIZEbrian2000-11-111-1/+1
|
* Avoid use of direct troff requests in mdoc(7) manual pages.ru2000-11-102-22/+20
|
* Introduce another global (MPPE_IsServer) so that we initiate thebrian2000-11-073-7/+14
| | | | | | | | | | | | | | | MPPE session keys correctly. I'm a bit dubious about this code. It seems that the session keys are initialised differently based on whether you're the client or the server. One side is the server if it issues the first challenge, but of course you can issue a challenge from both sides.... at the same time. Sounds like another wonderful M$ assumption... Ppp can now talk to itself correctly using encryption. Problem solved by: Ustimenko Semen <semen@iclub.nsu.ru> Hair torn out by: me
* Handle being given a connect()ed udp descriptor as stdin ratherbrian2000-11-071-10/+31
| | | | than assuming it's unconnected.
* Pass the correct output options to the ccp output initialisationbrian2000-11-072-4/+23
| | | | | | | routine rather than passing it the first requested output option. Ensure that options are freed correctly even if we don't reach TLU.
* Merge some OpenBSD/NetBSD fixes to the recent MPPE/CHAP0x81 update.brian2000-11-052-1/+30
|
* Don't ignore the return from tcsetattr() - moan about it instead.brian2000-10-311-7/+16
| | | | Suggested by: Andre Albsmeier <andre@akademie3000.de>
* Forgotten RELEASE_CRUNCH hack for mppe.c.hosokawa2000-10-311-2/+2
| | | | This fix is for "make release" and "make boot.flp".
* Use the new-style ngpppoe_init_data structure.brian2000-10-311-2/+1
| | | | Approved by: archie
* Mention that ``nat deny_incoming'' drops unrecognised IP packets.brian2000-10-312-0/+6
| | | | Requested by: kris
* Drop PKT_ALIAS_IGNORED packets if ``nat deny_incoming yes'' is in effect.brian2000-10-301-1/+5
| | | | Approved by: rwatson, ru
* Add ``all'' logging.brian2000-10-304-1/+29
| | | | Submitted by: eivind
* Bump our version to reflect the recent MPPE additions (and ccp structbrian2000-10-301-1/+1
| | | | size change).
* Move the MPPE keysize display in ``show ccp''.brian2000-10-301-2/+2
|
* Various whitespace changes.brian2000-10-3012-40/+77
| | | | Make some functions static.
* staticise mbuftype()brian2000-10-301-1/+1
|
* Add MPPE and MSChap v2 support (denied and disabled by default)brian2000-10-3015-26/+1003
| | | | Submitted by: Ustimenko Semen <semen@iclub.nsu.ru>
* Ignore ``#'' properly when told tobrian2000-10-281-1/+1
|
* Report the type of mbuf that couldn't be allocated beforebrian2000-10-271-13/+21
| | | | aborting ppp.
* Use rad_acct_open() instead of rad_auth_open().brian2000-10-151-1/+1
| | | | Suggested by: Victor Ivanov <v0rbiz@icon.bg>
* Don't define NOATM now that /usr/include/netnatm/ is created properly.brian2000-10-151-1/+0
|
* If write() gives -1/ENOBUFS, keep the packet and sleep for 1/10thbrian2000-10-091-2/+3
| | | | | of a second before attempting to write it again (unless there's something else to do instead).
* Create fd_sets big enough to handle getdtablesize() descriptors.brian2000-10-094-38/+68
|
* Fix some style nitsbrian2000-09-141-11/+13
|
* Support PPPoATM, disabled for now as /usr/include/netnatm doesn't existbrian2000-09-145-1/+282
| | | | Submitted by: Jakob Stoklund Olesen <stoklund@taxidriver.dk>
* Understand IPPROTO_ESP and IPPROTO_AH packetsbrian2000-09-142-0/+36
| | | | Submitted by: Angelos D. Keromytis <angelos@dsl.cis.upenn.edu>
* Spelling policebrian2000-09-061-2/+2
| | | | Submitted by: des
* libutil.h is no longer required for setproctitle()brian2000-09-021-5/+0
|
* Fix resolv.conf line hint: "name-server" -> "nameserver"rse2000-08-312-2/+2
|
* Use arc4random() instead of random()brian2000-08-312-1/+9
|
* Don't treat two or more whitespace followed by a comment asbrian2000-08-301-6/+11
| | | | | | | an empty argument PR: 20937 (maybe) PR: 20938
OpenPOWER on IntegriCloud