summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2000-02-28Add Trident Cyber 9525.Aaron Campbell
2000-02-28add support for "ping6 -a c".Jun-ichiro itojun Hagino
(new feature in draft-ietf-ipngwg-icmp-name-lookups-05.txt)
2000-02-28upgrade node information query protocol support from 04 draft toJun-ichiro itojun Hagino
draft-ietf-ipngwg-icmp-name-lookups-05.txt. NOTE: 04 and 05 has no interoperability, in terms of "ping6 -a".
2000-02-28syncjasoni
2000-02-28Add missing system calls as unimplemented.jasoni
Implement chown, poll, setresuid, getresuid, setresgid, getresgid.
2000-02-28add proxy NDP part.Jun-ichiro itojun Hagino
2000-02-28update IPv6 portion to match latest sys/netinet6.Jun-ichiro itojun Hagino
2000-02-28bring in latest kame code.Jun-ichiro itojun Hagino
- ndp -I (set default outgoing interface when no default router is defined) - ndp -s proxy (proxy NDP)
2000-02-28bring in recent KAME changes (only important and stable ones, as usual).Jun-ichiro itojun Hagino
- remove net.inet6.ip6.nd6_proxyall. introduce proxy NDP code works just like "arp -s". - revise source address selection. be more careful about use of yet-to-be-valid addresses as source. - as router, transmit ICMP6_DST_UNREACH_BEYONDSCOPE against out-of-scope packet forwarding attempt. - path MTU discovery takes care of routing header properly. - be more strict about mbuf chain parsing. - nuke xxCTL_VARS #define, they are for BSDI. - disable SIOCSIFDSTADDR_IN6/SIOCSIFNETMASK_IN6 ioctl, they do not fit IPv6 model where multiple address on interface is normal. (kernel side supports them for a while for backward compat, the support will be nuked shortly) - introduce "default outgoing interface" (for spec conformance in very rare case)
2000-02-28Add back the OpenBSDism that a #commented realm means Kerberos is disabled.Jason Downs
Let's keep it in this time.
2000-02-28Don't let scrollback happen if scr_offset == 0.Aaron Campbell
2000-02-28Better Englishbrian
2000-02-27-Wall on alphaTheo de Raadt
2000-02-27Fix a minor off-by-one error.Aaron Campbell
2000-02-27- Set scr_offset to -1 at driver init, not 0. Fixes a subtle bug.Aaron Campbell
- Do not decrement scr_offset on vt_clreol().
2000-02-27rename a cpp symbol, to avoid param.h collisionTheo de Raadt
2000-02-27make this compile on systems w/o TCSASOFTTodd C. Miller
2000-02-27Don't define -DDO_METAKEY twiceTodd C. Miller
2000-02-27Better setting of terminal 'raw' mode, cribbed from BSD curses.Todd C. Miller
We no longer try to put the terminal into 8bit, no parity mode and instead use the TCSASOFT flag to tcsetattr() as per the discussion of this in lib/libocurses/tty.c.
2000-02-27Move dobindkey() into extend.c where it belongs.Todd C. Miller
2000-02-27Remove a now-bogus commentTodd C. Miller
Use pid_t Use vfork(), not fork() when sensible
2000-02-27use rmdir, not unlinkdir hackTodd C. Miller
2000-02-27Call setttysize() from ttinit() not ttopen() since we haven'tTodd C. Miller
run setupterm() until ttinit() is called. Remove a tgetnum() I missed in the termcap -> terminfo cleanup. Merge parts of the BSD ttyio.c. The termios stuff here could use a cleanup, possibly including the flow control hack from the BSD ttyio.c.
2000-02-27We don't have silly SYSV 14-character file name limits. Taken fromTodd C. Miller
the BSD fileio.c. Note that this module is rife with PATH_MAX overflow possibilities.
2000-02-27repair some gotchas in the .{u,}{mul,div,rem} replacement routines, out of a ↵Theo de Raadt
conversation with torek
2000-02-27fix Xr orderHugh Graham
2000-02-27document ddb securelevel semanticsHugh Graham
2000-02-27Provide a means to lock ddb off on systems at high securelevel, in orderHugh Graham
reduce the need for a custom kernel sans ddb.
2000-02-27be clear about raw disk devsHugh Graham
2000-02-27Fixed a bug that caused an infinite loop when the passwordTodd C. Miller
timeout was disabled.
2000-02-27$Id$ -> $OpenBSD$brian
2000-02-27Fix a bug in end-of-line comment parsing.brian
Fix callback (don't ``forget'' to call back). Restructure how we add/remove the address family when writing/reading the tun device. Notify the tun device that we've changed PID under FreeBSD.
2000-02-27When we stop a timer that's the first in the timer list, ensurebrian
that we adjust that timers `rest' value (with the current getitimer() values) before using that to adjust the next items `rest' value. After adjusting that value, restart the timer service so that we've now got the correct setitimer() values. When adjusting timer::rest, round to the closest TICKUNIT usecs value. struct descriptor -> struct fdescriptor (to avoid header polution in NetBSD). Introduce LOCALNAT and LOCALRAD defines. The interface list that comes back from the PF_ROUTE/NET_RT_IFLIST mib is aligned. Teach this to ``show route'' and clean up some of the sockaddr parsing routines. Add ``set log dns'' to log DNS QUERY packets. When ppp can't identify the relevant name, don't use "???", use <nnn> or <0xnnn> instead. Don't ``break'' when we come accross a non-RTM_IFINFO type entry in the block returned by the NET_RT_IFLIST mib, continue instead. Correct UN_SIZE definition; ben@scientia.demon.co.uk
2000-02-26Handle the options better. angelos@ okHakan Olsson
2000-02-26Use uid_t, gid_t and mode_t where applicable.Todd C. Miller
Pull in changes from the BSD-specific sysdef.h and fileio.c: kill bogus unlinkdir() and rename() kludges since we have rmdir(2) and rename(2) define SYMBLINK since we have symlinks TODO: merge BSD spawn.c and ttyio.c
2000-02-26change WINDOW -> MGWIN to avoid curses type conflictTodd C. Miller
convert to terminfo in tty*.c add support for some keypad function keys (arrows, pgup, pgdown)
2000-02-26alphaDavid Leonard
2000-02-26better column titles. show prioq and scheduler timing informationDavid Leonard
2000-02-26uninitialised fieldsDavid Leonard
2000-02-26print addresses in extended scoped address format. (sync with kame)Jun-ichiro itojun Hagino
2000-02-26we are openbsd; mention tobyHugh Graham
2000-02-26add rcs identsHugh Graham
2000-02-26fix printf'sJason Wright
2000-02-26use LIST_* macros where appropriate instead of using LIST* internals.Michael Shalayeff
From netbsd add 802.11 media types and options add ifmedia_delete_instance() to be used in *detach() routines. a few minor knits. jason@ ok.
2000-02-25support -M and -N; jeff@cepheid.orgTheo de Raadt
2000-02-25TKT_ROOT has changed from a string to a function in newer KerberosIVHans Insulander
versions. (Ok deraadt@)
2000-02-25more pruningTheo de Raadt
2000-02-25further pruningTheo de Raadt
2000-02-25mandoc, but needs much more fleshing outTheo de Raadt
2000-02-25make it minimally compile; millertTheo de Raadt