summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-05-05pf_key_v2_set_spi now sets the Phase 1 IDs on the Phase 2 SAs;Angelos D. Keromytis
credentials to follow. Dynamic configuration entries are garbage-collected. Default-Phase-2-Suites entry in the [General] section may be used to specify Phase 2 default Suites (overriding the default 3DES-SHA-PFS).
2001-05-05Pass the Phase 1 SA to the set_spi routine, so the IDs (and eventuallyAngelos D. Keromytis
any credentials) can be associated with the Phase 2 SA.
2001-05-05Adhere to the new set_spi prototype.Angelos D. Keromytis
2001-05-05Change the set_spi prototype so that it gets the Phase 1 SA passed as well.Angelos D. Keromytis
2001-05-05Change set_spi prototype.Angelos D. Keromytis
2001-05-05Document default-phase2-suites tag.Angelos D. Keromytis
2001-05-05Add comment about finalize routine processing.Angelos D. Keromytis
2001-05-05Use the new M_* malloc typesAngelos D. Keromytis
2001-05-05Use the M_CRYPTO_DATA and M_CRYPTO_OPS malloc types.Angelos D. Keromytis
2001-05-05Check that SAs also match on the credentials and the IDs. This meansAngelos D. Keromytis
that flows with different source/destination ID requirements will cause different SAs to be established by IKE (or whatever other protocol). Also, use the new data types for allocated memory.
2001-05-05Document KERN_PROC_KTHREADAngelos D. Keromytis
2001-05-04move to Channel **channels (instead of Channel *channels), fixes realloc ↵Markus Friedl
problems. channel_new now returns a Channel *, favour Channel * over channel id. remove old channel_allocate interface.
2001-05-04Substantial update from NetBSD, most notably gives us UVM support; millert@ okAaron Campbell
2001-05-04o kill registerTodd C. Miller
o lots of KNF o passes -Wall o fix some [ug]id_t vs. int issues o use strlcpy/strlcat in favor of strncpy/strncat o use mem* routines everywhere instead of old b* ones o marked several questionable things for later fixing o kill ci.c and cvt.c -- we don't use them o kill read_line.c since it requires fgetln() (bad for portability) o kill salloc.c since it is the same as strup() o Replaced some #ifdef __OpenBSD__ with better tests o remaining problems: malloc return values are rarely checked, select misuse
2001-05-04Cleanups in filename and buffer name handling.Artur Grabowski
Mostly just using libc instead of rolling our own.
2001-05-04Qick fix for an overflow in C-X C-B.Artur Grabowski
This function needs a lot of work.
2001-05-04Update man page to match new start time sorting; kstailey@disclosure.comTodd C. Miller
2001-05-04handle kvm_nlist() failing, from pr#1798.Eric Jackson
Patch similar to the one submitted by <peterw@documenta.com.au>
2001-05-04Install empty sudoers file in /etcTodd C. Miller
2001-05-04Add /etc/sudoers; jcs@rt.fmTodd C. Miller
2001-05-04Typo in error string; grange@rt.mipt.ruTodd C. Miller
2001-05-04channel_new() reallocs channels[], we cannot use Channel *c after callingMarkus Friedl
channel_new(), XXX fix this in the future...
2001-05-04typosKevin Steves
2001-05-04vlan in GENERIC (ti(4) now has an issue, jason will deal)Theo de Raadt
2001-05-04GAPING_SECURITY_HOLE was removed so there is no -e option.Todd C. Miller
Removed from man page and usage; closes PR 1808
2001-05-03Move colon() and cleanhost() to misc.c where I should I have put it inmouring
the first place
2001-05-03When bt(4) was moved out of the i386 dir this Makefile changeTodd C. Miller
was apparently missed.
2001-05-03oopsTheo de Raadt
2001-05-03remove "\n" from fatal()Kevin Steves
2001-05-03fix typo; isaki@par.odn.ne.jpTheo de Raadt
2001-05-03linux_lib -> redhat_base; pointed out by deraadt@Aaron Campbell
2001-05-03Fix another annoying feature in mg. When I try to use the keypad toArtur Grabowski
escape from I-search (I don't know if it's legal, but it works in emacs) the initial ESC in the sequence is caugth by I-search (which exits), but not the rest of it which ends up written into the buffer. This is extra annoying when we don't have undo. Note that this is better than emacs because the ESC is removed if nothing indicating a multi-char sequence comes within 300 miliseconds. (Try to ESC from I-search in emacs and then press 'x').
2001-05-03Add a delay (in miliseconds) argument to ttwait.Artur Grabowski
2001-05-03Set kerberosIV version number at only _one_ place.Hans Insulander
2001-05-03fix bug where apache would segfault on startup if localhost wasn'tBob Beck
defined for 127.0.0.1, thanks fgsch@
2001-05-03exec shell -c /bin/sh .ssh/sshrc, from abartlet@pcug.org.auMarkus Friedl
2001-05-03typo in debug() stringKevin Steves
2001-05-03Bump bootstrap stuff from op-make. Mostly from fries@Marc Espie
2001-05-03Minor manpage tweaksMarc Espie
2001-05-03Synch with my current work.Marc Espie
Numerous changes: - generate can build several tables - style cleanup - statistics code - use variable names throughout (struct Name) - recursive variables everywhere - faster parser (pass buffer along instead of allocating multiple copies) - correct parser. Handles comments everywhere, and ; correctly - more string intervals - simplified dir.c, less recursion. - extended for loops - sinclude() - finished removing extra junk from Lst_* - handles ${@D} and friends in a simpler way - cleaned up and modular VarModifiers handling. - recognizes some gnu Makefile usages and errors out about them. Additionally, some extra functionality is defined by FEATURES. The set of functionalities is currently hardcoded to OpenBSD defaults, but this may include support for some NetBSD extensions, like ODE modifiers. Backed by miod@ and millert@, who finally got sick of my endless patches...
2001-05-03old fileMarc Espie
2001-05-03 * Let make_file_list always append a '/' at the end of directories.Artur Grabowski
This makes filename TAB-completion more useful, now you don't need to write that '/' manually. * random cleanups including using snprintf and memcmp where open-coded equivalents were used, waitpid instead of 'while (wait() != pid);', etc.
2001-05-03Add an MIIF_AUTOTSLEEP flag, needed by new aue(4) code. From NetBSD.Aaron Campbell
2001-05-03grr... part of the bus_dma change depended on local stuff: revert that partJason Wright
for now until folks comment on the dependent patch; pointed out by fgsch.
2001-05-03Don't claim to support the Belkin F5U011, which the cue(4) driver matches, butAaron Campbell
it doesn't work. augustss thinks it has an older chipset.
2001-05-03Sync with NetBSD. Tested with a USB keyboard, USB mouse, and three differentAaron Campbell
kue(4) Ethernet devices.
2001-05-03Clean up a signed vs unsigned error in gm ethernet.Dale Rahn
Pointed out by miod@. thx.
2001-05-02Minor fixes (one from norm@sandbox.org.uk via NetBSD) and one attribution.Paul Janzen
2001-05-02Ensure caves are connected; afghan@afghanhound.org.ukPaul Janzen
2001-05-02-h overrides BLOCKSIZE; matt@anzen.comPaul Janzen