Age | Commit message (Collapse) | Author | |
---|---|---|---|
1999-03-31 | Avoid a few warnings on the alpha | brian | |
1999-03-31 | Oops - remove register keyword | brian | |
1999-03-31 | Another alignment bogon. | brian | |
1999-03-31 | name default if, plus another bug; garath@ntplx.net | Theo de Raadt | |
1999-03-31 | more examples | Jason Wright | |
1999-03-30 | Point at cs.slcs_u.csu_ip instead of the just-copied ``cp'' | brian | |
when recalculating the ip checksum. cp is not guaranteed to be aligned. It now doesn't matter that cp isn't aligned as the caller does another mbuf_Alloc() regardless. | |||
1999-03-30 | Maintain a `necessary' marker to indicate that we *probably* | brian | |
need to process a signal (usually a SIGALRM). Check to see if we need to process a signal both before *and* after calling select() as older (pre-2.0) versions of ppp used to. This handles the possibility that ppp may block at some point (maybe due to an open() of a misconfigured device). Previously, we'd potentially lock up in select(). The `necessary' marker reduces the increased signal checking overhead so that at full speed with no compression transferring an 83Mb file via a ``!ppp -direct'' device, we get a 1% throughput gain. | |||
1999-03-29 | Only print "already up to date" if in verbose mode | Todd C. Miller | |
1999-03-29 | If we adjust our required ACCMAP due to a more restrictive | brian | |
ACCMAP being REQuested by the peer, also increment our FSM id so that we don't end up sending out a new REQ with the same ID and different data (the changed ACCMAP). | |||
1999-03-29 | Ensure that the thing we're casting to struct ip | brian | |
is aligned for non-i386 architectures. | |||
1999-03-27 | Upgrade to 2.5.4. Mopprobe is working again, and some linux support. -moj | Mats O Jansson | |
1999-03-25 | Allow port ranges in ``alias port''. | brian | |
1999-03-25 | Undo possible damage done by the new TUNSIFMODE ioctl | brian | |
in FreeBSD-current. | |||
1999-03-24 | Remove duplicate line; FreeBSD | brian | |
1999-03-24 | Add a ``const'' and remove some inconsistent prototype args. | brian | |
1999-03-24 | Only exit in nlist.c due to a memory error, otherwise just return. A return ↵ | Todd C. Miller | |
value of 1 indicates an incorrect executable type, a return value of -1 indicates some other problem. This gives us better fallback from /dev/ksyms to /bsd. | |||
1999-03-24 | Better fallback from /dev/ksyms to /bsd if there are problems with an nlist ↵ | Todd C. Miller | |
of /dev/ksyms | |||
1999-03-23 | never spit out two error messages, it is bad style | Theo de Raadt | |
1999-03-22 | set default if to something more reasonable; fix SIGSEGV when no options ↵ | Theo de Raadt | |
listed; garath@ntplx.net | |||
1999-03-19 | Add flag to allow some interfaces to not see packets with unknown destination. | Jason Wright | |
1999-03-19 | Do away with some literal text that is never switched | brian | |
off - I *think* these were groff bugs. | |||
1999-03-19 | Add the ability to mark an interface as "non-learning" | Jason Wright | |
1999-03-19 | Replace hardcoded quoting with Sq or Dq. | brian | |
1999-03-19 | Don't forget to fully initialise the configured values | brian | |
for MYADDR and HISADDR in ``set ifaddr'' so that unspecified values don't end up retaining their `width'. | |||
1999-03-18 | Use ``Sx'' when xref'ing sections. | brian | |
1999-03-18 | Remove all remaining [ and ] characters (and do things properly). | brian | |
1999-03-17 | i386, sparc, hp300 not vax, tahoe, hp300 | Todd C. Miller | |
1999-03-17 | Remove all hardcoded [...] syntax. | brian | |
With help from: Daniel C. Sobral <dcs@newsguy.com> | |||
1999-03-16 | Mention changes to the default authentication behaviour. | brian | |
1999-03-16 | Detect pred1 packets where the length != the packet length | brian | |
Use a maximum of MAX_MRU + 2 bytes for incoming packets, not MAX_MTU + 2. Tidy up some diagnostics. | |||
1999-03-13 | proper URL for fetching package; evanc@concer.to | Theo de Raadt | |
1999-03-12 | fix usage | Theo de Raadt | |
1999-03-12 | userdir off by default, damnit | Theo de Raadt | |
1999-03-12 | cleanup | Aaron Campbell | |
1999-03-12 | big overhaul: | Jason Wright | |
o SNAP encapsulated IP filtering o static address cache entries o address deletion from cache o dynamic & full cache flush o filter packets based on each interface, not on the bridge as a whole o KNF nits o allow addition of ~IFF_UP interfaces o man page & user level fixes to match the above | |||
1999-03-11 | cleanup | Aaron Campbell | |
1999-03-11 | cleanup | Aaron Campbell | |
1999-03-11 | cleanup | Aaron Campbell | |
1999-03-11 | Tone down the log levels (Log{ERROR,WARN} -> LogCCP) | brian | |
when we've simply missed a packet. When our Predictor1 CRC is wrong (implying we've dropped a packet), don't send a ResetReq(). Instead, send another CCP ConfigReq(). *shrug* My tests show this as being far worse than the ResetReq as we may have further Nak/Rejs etc and we're basically resetting both our incoming and outgoing compression dictionaries, but rfc1978 says the ConfigReq is correct, so we'd better go along... | |||
1999-03-11 | fix more comma splices that involve misuse of conjunctive adverbs | Paul Janzen | |
1999-03-10 | fix comma splices involving 'however' | Paul Janzen | |
1999-03-10 | Daylight Saving Time, not savings | Paul Janzen | |
1999-03-09 | Remove all PacketAlias diagnostics to stdout/stderr with | brian | |
#ifdef DEBUG. Statify functions in alias_nbt.c | |||
1999-03-09 | If /etc/ppp/ppp.conf doesn't exist, mention that the | brian | |
configuration file can't be found rather than saying that the label can't be found. Pointed out by: Greg Black <gjb@comkey.com.au> | |||
1999-03-08 | Don't destroy the old server socket another ``set server'' | brian | |
call fails. | |||
1999-03-08 | put more example images on default home page. | Bob Beck | |
1999-03-08 | Some eye candy to stick on the default home page for people to use. | Bob Beck | |
1999-03-08 | Fix stupid apache Configure date sillyness here - hopefully avoiding another ↵ | Bob Beck | |
resurfacing. | |||
1999-03-08 | better string handling | Jason Wright | |
1999-03-08 | Handle comments that do not end in \n correctly; WHS <wouters@cistron.nl> | Marco S Hyman | |