summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
1999-12-25remove ref to .ssh/random_seed, mention .ssh/environment in .Sh FILES, tooMarkus Friedl
1999-12-25Support v4 and v6 destination TDBs.Angelos D. Keromytis
1999-12-25Change some function prototypes, dont unnecessarily initialize someAngelos D. Keromytis
variables.
1999-12-25fake cerror.S creation for nowMichael Shalayeff
1999-12-25Move the IPsec packet-processing loop to a separate routine, so we canAngelos D. Keromytis
reuse it in ip6_output and the bridge. The policy-lookup code will probably follow suit in a separate routine sometime soon.
1999-12-25fix rfc number.Jun-ichiro itojun Hagino
1999-12-24Try to preserve file flags in mv (Kamo Hiroyasu <wd@ics.nara-wu.ac.jp>)Angelos D. Keromytis
1999-12-24Use correct printf formatting (dwmalone@maths.tcd.ie)Angelos D. Keromytis
1999-12-24Return EINVAL instead of ENOBUFS if the source address is not specified.Angelos D. Keromytis
1999-12-24Fix synopsis. bde@freebsd.orgAlex Feldman
1999-12-23Edimax NE2000; from tom@knienieder.com.Federico G. Schwindt
1999-12-23regen.Federico G. Schwindt
1999-12-23Edimax NE2000; from tom@knienieder.com.Federico G. Schwindt
1999-12-23Add -I flag for compatibility.Angelos D. Keromytis
1999-12-23Repair .Nd descriptor; wilfried@commentor.seAaron Campbell
1999-12-23no need for obj dir at all; millert@ okMichael Shalayeff
1999-12-23disable all debugsMichael Shalayeff
1999-12-23some support for hp som executablesMichael Shalayeff
1999-12-23some more of hp som definitions from different {,kinds} sourcesMichael Shalayeff
1999-12-23add hp som file support protosMichael Shalayeff
1999-12-23clean some more filesMichael Shalayeff
1999-12-22Add yet another case when user matching is disabled.Jason Downs
1999-12-22repair a few breakages in cross-tools caused by switch to egcs and new lorderMichael Shalayeff
1999-12-22Add Dual NE2000.Federico G. Schwindt
1999-12-22regen.Federico G. Schwindt
1999-12-22Dual NE2000; john@teletrak.com.au.Federico G. Schwindt
1999-12-22i thought hppa is there long time agoMichael Shalayeff
1999-12-22wording fixes. sync with reality.Jun-ichiro itojun Hagino
(bring in latest from KAME tree)
1999-12-21Recursive definitions are not the real problem.Marc Espie
Trying to expand them is. So flag obvious recursive definitions for later, and give an error only if we expand them. (Some gnu-m4 files, including autoconf, do define some macros with themselves as the replacement text, for use in test-if-set patterns) Since type is no longer MACRTYPE, those macros end up in builtins... but this is not a problem, since expanding them is an error.
1999-12-21compile without INET6, okay angelos@Niels Provos
1999-12-21no TCP_NEWRENO anymoreNiels Provos
1999-12-21option TCP_NEWRENO goes away, its the default case for TCP_SACK ifNiels Provos
SACK is disabled for the connection or via sysctl
1999-12-21be paranoid about malicious use of v4 mapped addr on v6 packet.Jun-ichiro itojun Hagino
malicious party may try to use v4 mapped addr as source/dest to confuse tcp/udp layer, or to bypass security checks, for example, naive stack can mistakingly think a packet with src = ::ffff:127.0.0.1 is from local node. (sync with kame)
1999-12-21enable SACK againNiels Provos
1999-12-21fix non-IPsec compilation. (too complex #ifdef...)Jun-ichiro itojun Hagino
1999-12-21reuse encapsulate/decapsulate routine in ip_ip4.c from gif interfaceJun-ichiro itojun Hagino
(outer=IPv4 case). tested with (inner=IPv6, outer=IPv4) case. BUG ALERT: in_gif_output() assumes about ipe4_output()'s behavior too much. I mean, "tdb" is configured with certain knowledge about ipe4_output()'s behavior.
1999-12-21rcsid police. add Makefile. add gifconfig to SUBDIR.Jun-ichiro itojun Hagino
1999-12-21gifconfig from KAMEJun-ichiro itojun Hagino
1999-12-21Initialize variable.Angelos D. Keromytis
1999-12-21Use MAP_PRIVATE for mmap() flags instead of 0. With UVM this defaultsTodd C. Miller
to MAP_PRIVATE anyway but we want to avoid the kernel complaining...
1999-12-21strip lynx before installation.Federico G. Schwindt
1999-12-21typo fix.Jun-ichiro itojun Hagino
From: Michael Shalayeff <mickey@lucifier.dial-up.user.akula.net>
1999-12-21wording changes (on openbsd ipsec6)Jun-ichiro itojun Hagino
1999-12-20add faithd to SUBDIR.Jun-ichiro itojun Hagino
1999-12-20rcsid police.Jun-ichiro itojun Hagino
pathname change (/usr/local/v6/libexec -> /usr/libexec) bring in some of kame fixes (sprintf -> snprintf, proc title).
1999-12-20faith translator deamon, from KAMEJun-ichiro itojun Hagino
1999-12-20decide address family for {set,get}sockopt() by domain table,Jun-ichiro itojun Hagino
not from tcb. it will present more natural behavior. af for socket option obeys address family passed to bind(2).
1999-12-20perform setsockopt(IP_TOS) only when IPv4 connection comes.Jun-ichiro itojun Hagino
1999-12-20machine is hppa; in cross case, define LORDER tooMichael Shalayeff
1999-12-20it looks perror("") has no effect in most cases.Jun-ichiro itojun Hagino
use strerror(errno) and format it on our own.