OpenBSD CVS

CVS log for src/sys/net/Attic/if_sl.c


[BACK] Up to [local] / src / sys / net

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.55, Wed Oct 1 10:08:30 2014 UTC (9 years, 8 months ago) by mpi
Branch: MAIN
CVS Tags: HEAD
Changes since 1.54: +1 -1 lines
FILE REMOVED

sl(4) is no more, thanks for all the fish!

Revision 1.54 / (download) - annotate - [select for diffs], Mon Sep 15 19:08:21 2014 UTC (9 years, 8 months ago) by miod
Branch: MAIN
Changes since 1.53: +1 -2 lines
Diff to previous 1.53 (colored)

Remove non-standard <sys/dkstat.h> header. It has not contained anything
related to disk stastics for almost 17 years, and the remaining
userland-visible defines duplicate those found in <sys/sched.h>.

Move the remaining _KERNEL defines to <sys/tty.h> where they belong, and
update all users to cope with this.

ok kettenis@

Revision 1.53 / (download) - annotate - [select for diffs], Tue Jul 22 11:06:09 2014 UTC (9 years, 10 months ago) by mpi
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6
Changes since 1.52: +1 -2 lines
Diff to previous 1.52 (colored)

Fewer <netinet/in_systm.h> !

Revision 1.52 / (download) - annotate - [select for diffs], Sat Jul 12 18:44:22 2014 UTC (9 years, 11 months ago) by tedu
Branch: MAIN
Changes since 1.51: +2 -2 lines
Diff to previous 1.51 (colored)

add a size argument to free. will be used soon, but for now default to 0.
after discussions with beck deraadt kettenis.

Revision 1.51 / (download) - annotate - [select for diffs], Mon Apr 14 09:06:42 2014 UTC (10 years, 2 months ago) by mpi
Branch: MAIN
Changes since 1.50: +5 -5 lines
Diff to previous 1.50 (colored)

"struct pkthdr" holds a routing table ID, not a routing domain one.
Avoid the confusion by using an appropriate name for the variable.

Note that since routing domain IDs are a subset of the set of routing
table IDs, the following idiom is correct:

	rtableid = rdomain

But to get the routing domain ID corresponding to a given routing table
ID, you must call rtable_l2(9).

claudio@ likes it, ok mikeb@

Revision 1.50 / (download) - annotate - [select for diffs], Wed Oct 23 15:12:42 2013 UTC (10 years, 7 months ago) by mpi
Branch: MAIN
CVS Tags: OPENBSD_5_5_BASE, OPENBSD_5_5
Changes since 1.49: +1 -2 lines
Diff to previous 1.49 (colored)

Remove the number of in_var.h inclusions by moving some functions and
global variables to in.h.

ok mikeb@, deraadt@

Revision 1.49 / (download) - annotate - [select for diffs], Sat Oct 19 14:46:31 2013 UTC (10 years, 7 months ago) by mpi
Branch: MAIN
Changes since 1.48: +1 -18 lines
Diff to previous 1.48 (colored)

Uniformize drivers doing nothing with their multicast filters to make
them ignore the SIOC{ADD,DEL}MULTI ioctls.

ok reyk@, claudio@

Revision 1.48 / (download) - annotate - [select for diffs], Tue Apr 16 12:05:04 2013 UTC (11 years, 1 month ago) by mpi
Branch: MAIN
CVS Tags: OPENBSD_5_4_BASE, OPENBSD_5_4
Changes since 1.47: +1 -31 lines
Diff to previous 1.47 (colored)

Remove code under ifndef OpenBSD. No object change.

Revision 1.47 / (download) - annotate - [select for diffs], Thu Mar 28 16:55:27 2013 UTC (11 years, 2 months ago) by deraadt
Branch: MAIN
Changes since 1.46: +1 -2 lines
Diff to previous 1.46 (colored)

do not include machine/cpu.h from a .c file; it is the responsibility of
.h files to pull it in, if needed
ok tedu

Revision 1.46 / (download) - annotate - [select for diffs], Thu Mar 28 16:45:16 2013 UTC (11 years, 2 months ago) by tedu
Branch: MAIN
Changes since 1.45: +1 -2 lines
Diff to previous 1.45 (colored)

no need for a lot of code to include proc.h

Revision 1.45 / (download) - annotate - [select for diffs], Thu Jan 17 21:22:54 2013 UTC (11 years, 4 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_3_BASE, OPENBSD_5_3
Changes since 1.44: +2 -2 lines
Diff to previous 1.44 (colored)

hardwire SLIP_HIWAT to 100 (as the comment above suggests) since we are
using tty ring buffers instead of clists
ok kettenis

Revision 1.44 / (download) - annotate - [select for diffs], Wed Jul 6 02:42:28 2011 UTC (12 years, 11 months ago) by henning
Branch: MAIN
CVS Tags: OPENBSD_5_2_BASE, OPENBSD_5_2, OPENBSD_5_1_BASE, OPENBSD_5_1, OPENBSD_5_0_BASE, OPENBSD_5_0
Changes since 1.43: +2 -2 lines
Diff to previous 1.43 (colored)

cosnistently use IFQ_SET_MAXLEN, surfaced in a discussion with + ok bluhm

Revision 1.43 / (download) - annotate - [select for diffs], Thu Jan 6 11:52:41 2011 UTC (13 years, 5 months ago) by claudio
Branch: MAIN
CVS Tags: OPENBSD_4_9_BASE, OPENBSD_4_9
Changes since 1.42: +4 -4 lines
Diff to previous 1.42 (colored)

Do not assign m->m_pkthdr.rdomain before m was allocated.
Fix for rev 1.37 commit which would crash when slip(4) is used.
Problem found the hard way by Henri Kemppainen.

Revision 1.42 / (download) - annotate - [select for diffs], Sun May 2 22:34:31 2010 UTC (14 years, 1 month ago) by stsp
Branch: MAIN
CVS Tags: OPENBSD_4_8_BASE, OPENBSD_4_8
Changes since 1.41: +2 -2 lines
Diff to previous 1.41 (colored)

The line-discipline-specific ioctls return -1 to indicate that
the non-line-discipline-specific ioctl handler should be tried.
So changing these to return ENOTTY was wrong.

Noted on misc@ because of resulting pppd log spam (but it didn't break
anything serious): http://marc.info/?l=openbsd-misc&m=127258856501621&w=2

ok sthen@, miod@

Revision 1.41 / (download) - annotate - [select for diffs], Sat May 1 08:14:26 2010 UTC (14 years, 1 month ago) by mk
Branch: MAIN
Changes since 1.40: +2 -2 lines
Diff to previous 1.40 (colored)

incomming -> incoming

The ones found in gnu/ left out by intention.

ok jmc

Revision 1.40 / (download) - annotate - [select for diffs], Sat Apr 24 08:00:12 2010 UTC (14 years, 1 month ago) by stsp
Branch: MAIN
Changes since 1.39: +2 -2 lines
Diff to previous 1.39 (colored)

Make if_ppp and if_sl ioctl handlers return ENOTTY for unsupported
ioctls, instead of -1 or EINVAL. ENOTTY audit suggested to me by uwe.
ok dlg tedu

Revision 1.39 / (download) - annotate - [select for diffs], Tue Nov 3 10:59:04 2009 UTC (14 years, 7 months ago) by claudio
Branch: MAIN
CVS Tags: OPENBSD_4_7_BASE, OPENBSD_4_7
Changes since 1.38: +5 -6 lines
Diff to previous 1.38 (colored)

rtables are stacked on rdomains (it is possible to have multiple routing
tables on top of a rdomain) but until now our code was a crazy mix so that
it was impossible to correctly use rtables in that case. Additionally pf(4)
only knows about rtables and not about rdomains. This is especially bad when
tracking (possibly conflicting) states in various domains.
This diff fixes all or most of these issues. It adds a lookup function to
get the rdomain id based on a rtable id. Makes pf understand rdomains and
allows pf to move packets between rdomains (it is similar to NAT).
Because pf states now track the rdomain id as well it is necessary to modify
the pfsync wire format. So old and new systems will not sync up.
A lot of help by dlg@, tested by sthen@, jsg@ and probably more
OK dlg@, mpf@, deraadt@

Revision 1.38 / (download) - annotate - [select for diffs], Sun Jul 19 08:16:06 2009 UTC (14 years, 10 months ago) by blambert
Branch: MAIN
Changes since 1.37: +2 -6 lines
Diff to previous 1.37 (colored)

clalloc() can't fail, so there's no need to handle failure cases.
Change to void function.
Also, no need to have global tty stats pointer, so just return it
from clalloc, as the caller frees it immediately anyway.

ok miod@

Revision 1.37 / (download) - annotate - [select for diffs], Wed Jul 8 15:01:50 2009 UTC (14 years, 11 months ago) by claudio
Branch: MAIN
Changes since 1.36: +14 -1 lines
Diff to previous 1.36 (colored)

Add the same routing domain assignments and checks into the not so used
protocols as it is currently in if_ethersubr.c. OK reyk@

Revision 1.36 / (download) - annotate - [select for diffs], Wed Oct 22 23:04:45 2008 UTC (15 years, 7 months ago) by mpf
Branch: MAIN
CVS Tags: OPENBSD_4_6_BASE, OPENBSD_4_6, OPENBSD_4_5_BASE, OPENBSD_4_5
Changes since 1.35: +2 -2 lines
Diff to previous 1.35 (colored)

#if INET  => #ifdef INET
#if INET6 => #ifdef INET6

Revision 1.35 / (download) - annotate - [select for diffs], Thu Dec 20 02:53:02 2007 UTC (16 years, 5 months ago) by brad
Branch: MAIN
CVS Tags: OPENBSD_4_4_BASE, OPENBSD_4_4, OPENBSD_4_3_BASE, OPENBSD_4_3
Changes since 1.34: +2 -2 lines
Diff to previous 1.34 (colored)

return with ENOTTY instead of EINVAL for unknown ioctl requests.

ok claudio@ krw@ jason@ dlg@

Revision 1.34 / (download) - annotate - [select for diffs], Sat Oct 13 14:21:01 2007 UTC (16 years, 8 months ago) by fgsch
Branch: MAIN
Changes since 1.33: +2 -2 lines
Diff to previous 1.33 (colored)

remove unneeded declarations that shadows existing vars; ok by many.

Revision 1.33 / (download) - annotate - [select for diffs], Sat Sep 15 16:43:51 2007 UTC (16 years, 8 months ago) by henning
Branch: MAIN
Changes since 1.32: +2 -3 lines
Diff to previous 1.32 (colored)

malloc sweep:
-remove useless casts
-MALLOC/FREE -> malloc/free
-use M_ZERO where appropriate instead of seperate bzero
feedback & ok krw, hshoexer

Revision 1.32 / (download) - annotate - [select for diffs], Sat Mar 25 22:41:47 2006 UTC (18 years, 2 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_4_2_BASE, OPENBSD_4_2, OPENBSD_4_1_BASE, OPENBSD_4_1, OPENBSD_4_0_BASE, OPENBSD_4_0
Changes since 1.31: +4 -3 lines
Diff to previous 1.31 (colored)

allow bpf(4) to ignore packets based on their direction (inbound or
outbound), using a new BIOCSDIRFILT ioctl;
guidance, feedback and ok canacar@

Revision 1.31 / (download) - annotate - [select for diffs], Sat Mar 11 22:44:47 2006 UTC (18 years, 3 months ago) by brad
Branch: MAIN
Changes since 1.30: +11 -11 lines
Diff to previous 1.30 (colored)

splimp -> spltty/splnet

ok miod@

Revision 1.30 / (download) - annotate - [select for diffs], Wed Jan 4 06:04:42 2006 UTC (18 years, 5 months ago) by canacar
Branch: MAIN
CVS Tags: OPENBSD_3_9_BASE, OPENBSD_3_9
Changes since 1.29: +1 -4 lines
Diff to previous 1.29 (colored)

Remove redundant calls to bpfdetach.
ok brad@

Revision 1.29 / (download) - annotate - [select for diffs], Thu Jun 24 19:35:25 2004 UTC (19 years, 11 months ago) by tholo
Branch: MAIN
CVS Tags: OPENBSD_3_8_BASE, OPENBSD_3_8, OPENBSD_3_7_BASE, OPENBSD_3_7, OPENBSD_3_6_BASE, OPENBSD_3_6
Changes since 1.28: +7 -6 lines
Diff to previous 1.28 (colored)

This moves access to wall and uptime variables in MI code,
encapsulating all such access into wall-defined functions
that makes sure locking is done as needed.

It also cleans up some uses of wall time vs. uptime some
places, but there is sure to be more of these needed as
well, particularily in MD code.  Also, many current calls
to microtime() should probably be changed to getmicrotime(),
or to the {,get}microuptime() versions.

ok art@ deraadt@ aaron@ matthieu@ beck@ sturm@ millert@ others
"Oh, that is not your problem!" from miod@

Revision 1.28 / (download) - annotate - [select for diffs], Mon Jun 21 23:50:36 2004 UTC (19 years, 11 months ago) by tholo
Branch: MAIN
Changes since 1.27: +5 -5 lines
Diff to previous 1.27 (colored)

First step towards more sane time handling in the kernel -- this changes
things such that code that only need a second-resolution uptime or wall
time, and used to get that from time.tv_secs or mono_time.tv_secs now get
this from separate time_t globals time_second and time_uptime.

ok art@ niklas@ nordin@

Revision 1.9.4.8 / (download) - annotate - [select for diffs], Sat Jun 5 23:11:23 2004 UTC (20 years ago) by niklas
Branch: SMP
Changes since 1.9.4.7: +2 -0 lines
Diff to previous 1.9.4.7 (colored) to branchpoint 1.9 (colored) next main 1.10 (colored)

Merge with the trunk

Revision 1.27 / (download) - annotate - [select for diffs], Sun Apr 25 18:50:01 2004 UTC (20 years, 1 month ago) by henning
Branch: MAIN
CVS Tags: SMP_SYNC_B, SMP_SYNC_A
Changes since 1.26: +3 -1 lines
Diff to previous 1.26 (colored)

check for input queue congestion on those as well and call if_congestion when
needed; these  are slightly different so that we cannot use the new
IF_INPUT_ENQUEUE macro
deraadt ok

Revision 1.9.4.7 / (download) - annotate - [select for diffs], Thu Feb 19 10:57:21 2004 UTC (20 years, 3 months ago) by niklas
Branch: SMP
Changes since 1.9.4.6: +104 -64 lines
Diff to previous 1.9.4.6 (colored) to branchpoint 1.9 (colored)

Merge of current from two weeks agointo the SMP branch

Revision 1.26 / (download) - annotate - [select for diffs], Tue Dec 16 20:33:25 2003 UTC (20 years, 5 months ago) by markus
Branch: MAIN
CVS Tags: OPENBSD_3_5_BASE, OPENBSD_3_5
Changes since 1.25: +5 -4 lines
Diff to previous 1.25 (colored)

return error in ifc_destroy; ok deraadt, itojun, cedric, hshoexer

Revision 1.25 / (download) - annotate - [select for diffs], Sat Dec 13 10:01:16 2003 UTC (20 years, 6 months ago) by markus
Branch: MAIN
Changes since 1.24: +25 -2 lines
Diff to previous 1.24 (colored)

initial support ifconfig destroy; ok deraadt@

Revision 1.24 / (download) - annotate - [select for diffs], Fri Dec 12 12:54:57 2003 UTC (20 years, 6 months ago) by hshoexer
Branch: MAIN
Changes since 1.23: +3 -3 lines
Diff to previous 1.23 (colored)

small compiler warning cleanup (#error instead of bailing out)

ok henning@ grange@

Revision 1.23 / (download) - annotate - [select for diffs], Wed Dec 10 07:22:42 2003 UTC (20 years, 6 months ago) by itojun
Branch: MAIN
Changes since 1.22: +31 -31 lines
Diff to previous 1.22 (colored)

de-register.  deraadt ok

Revision 1.22 / (download) - annotate - [select for diffs], Sun Dec 7 15:41:27 2003 UTC (20 years, 6 months ago) by markus
Branch: MAIN
Changes since 1.21: +47 -31 lines
Diff to previous 1.21 (colored)

support ifconfig create; ok deraadt

Revision 1.21 / (download) - annotate - [select for diffs], Fri Aug 15 20:32:19 2003 UTC (20 years, 10 months ago) by tedu
Branch: MAIN
CVS Tags: OPENBSD_3_4_BASE, OPENBSD_3_4
Changes since 1.20: +2 -2 lines
Diff to previous 1.20 (colored)

change arguments to suser.  suser now takes the process, and a flags
argument.  old cred only calls user suser_ucred.  this will allow future
work to more flexibly implement the idea of a root process.  looks like
something i saw in freebsd, but a little different.
use of suser_ucred vs suser in file system code should be looked at again,
for the moment semantics remain unchanged.
review and input from art@  testing and further review miod@

Revision 1.9.4.6 / (download) - annotate - [select for diffs], Sat Jun 7 11:06:06 2003 UTC (21 years ago) by ho
Branch: SMP
Changes since 1.9.4.5: +2 -6 lines
Diff to previous 1.9.4.5 (colored) to branchpoint 1.9 (colored)

Sync SMP branch to -current

Revision 1.20 / (download) - annotate - [select for diffs], Mon Jun 2 23:28:12 2003 UTC (21 years ago) by millert
Branch: MAIN
Changes since 1.19: +2 -6 lines
Diff to previous 1.19 (colored)

Remove the advertising clause in the UCB license which Berkeley
rescinded 22 July 1999.  Proofed by myself and Theo.

Revision 1.14.4.3 / (download) - annotate - [select for diffs], Mon May 19 22:30:41 2003 UTC (21 years ago) by tedu
Branch: UBC
Changes since 1.14.4.2: +4 -6 lines
Diff to previous 1.14.4.2 (colored) to branchpoint 1.14 (colored) next main 1.15 (colored)

sync

Revision 1.9.4.5 / (download) - annotate - [select for diffs], Tue May 13 19:36:15 2003 UTC (21 years, 1 month ago) by ho
Branch: SMP
Changes since 1.9.4.4: +3 -2 lines
Diff to previous 1.9.4.4 (colored) to branchpoint 1.9 (colored)

Sync the SMP branch to -current. This includes moving to ELF.

Revision 1.19 / (download) - annotate - [select for diffs], Sat May 3 21:15:11 2003 UTC (21 years, 1 month ago) by deraadt
Branch: MAIN
CVS Tags: UBC_SYNC_A
Changes since 1.18: +3 -2 lines
Diff to previous 1.18 (colored)

string fixes; tedu ok

Revision 1.9.4.4 / (download) - annotate - [select for diffs], Fri Mar 28 00:41:28 2003 UTC (21 years, 2 months ago) by niklas
Branch: SMP
Changes since 1.9.4.3: +3 -5 lines
Diff to previous 1.9.4.3 (colored) to branchpoint 1.9 (colored)

Sync the SMP branch with 3.3

Revision 1.18 / (download) - annotate - [select for diffs], Tue Jan 7 09:00:33 2003 UTC (21 years, 5 months ago) by kjc
Branch: MAIN
CVS Tags: OPENBSD_3_3_BASE, OPENBSD_3_3
Changes since 1.17: +2 -5 lines
Diff to previous 1.17 (colored)

remove the altq classifier code which is replaced by pf and no longer used.

ok henning@, deraadt@

Revision 1.14.4.2 / (download) - annotate - [select for diffs], Tue Oct 29 00:36:45 2002 UTC (21 years, 7 months ago) by art
Branch: UBC
Changes since 1.14.4.1: +3 -2 lines
Diff to previous 1.14.4.1 (colored) to branchpoint 1.14 (colored)

sync to -current

Revision 1.17 / (download) - annotate - [select for diffs], Wed Sep 11 05:38:47 2002 UTC (21 years, 9 months ago) by itojun
Branch: MAIN
CVS Tags: UBC_SYNC_B, OPENBSD_3_2_BASE, OPENBSD_3_2
Changes since 1.16: +2 -2 lines
Diff to previous 1.16 (colored)

KNF - return is not a function.

Revision 1.16 / (download) - annotate - [select for diffs], Sun Jun 30 13:04:36 2002 UTC (21 years, 11 months ago) by itojun
Branch: MAIN
Changes since 1.15: +2 -1 lines
Diff to previous 1.15 (colored)

allocate sockaddr_dl for ifnet in if_alloc_sadl(), as we don't always know
the size of sockaddr_dl on if_attach() - for instance, see ether_ifattach().
from netbsd.  fgs ok

Revision 1.14.4.1 / (download) - annotate - [select for diffs], Tue Jun 11 03:30:45 2002 UTC (22 years ago) by art
Branch: UBC
Changes since 1.14: +3 -3 lines
Diff to previous 1.14 (colored)

Sync UBC branch to -current

Revision 1.9.4.3 / (download) - annotate - [select for diffs], Thu Mar 28 14:57:37 2002 UTC (22 years, 2 months ago) by niklas
Branch: SMP
Changes since 1.9.4.2: +3 -3 lines
Diff to previous 1.9.4.2 (colored) to branchpoint 1.9 (colored)

Merge in -current from roughly a week ago

Revision 1.15 / (download) - annotate - [select for diffs], Thu Mar 14 01:27:09 2002 UTC (22 years, 3 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_3_1_BASE, OPENBSD_3_1
Changes since 1.14: +3 -3 lines
Diff to previous 1.14 (colored)

First round of __P removal in sys

Revision 1.9.4.2 / (download) - annotate - [select for diffs], Wed Jul 4 10:54:05 2001 UTC (22 years, 11 months ago) by niklas
Branch: SMP
Changes since 1.9.4.1: +113 -78 lines
Diff to previous 1.9.4.1 (colored) to branchpoint 1.9 (colored)

Merge in -current from two days ago in the SMP branch.
As usual with merges, they do not indicate progress, so do not hold
your breath for working SMP, and do not mail me and ask about the
state of it.  It has not changed.  There is work ongoing, but very, very
slowly.  The commit is done in parts as to not lock up the tree in too
big chunks at a time.

Revision 1.14 / (download) - annotate - [select for diffs], Wed Jun 27 06:07:43 2001 UTC (22 years, 11 months ago) by kjc
Branch: MAIN
CVS Tags: UBC_BASE, OPENBSD_3_0_BASE, OPENBSD_3_0
Branch point for: UBC
Changes since 1.13: +12 -13 lines
Diff to previous 1.13 (colored)

introduce the ALTQ queue macros into sys/net files.
the new model removes direct references to the fields in ifp->if_snd,
and defines the following macros to manipulate ifp->if_snd.
  IFQ_ENQUEUE(ifq, m, pktattr, err)
  IFQ_DEQUEUE(ifq, m)
  IFQ_POLL(ifq, m)
  IFQ_PURGE(ifq)
  IFQ_IS_EMPTY(ifq)

the new model also enforces some rules regarding how to use these macros.
details are descrined in
http://www.csl.sony.co.jp/~kjc/software/altq-new-design.txt

Revision 1.13 / (download) - annotate - [select for diffs], Fri Jun 15 03:38:34 2001 UTC (23 years ago) by itojun
Branch: MAIN
Changes since 1.12: +5 -5 lines
Diff to previous 1.12 (colored)

change the meaning of ifnet.if_lastchange to meet RFC1573 ifLastChange.
follows BSD/OS practice and ucd-snmp code (FreeBSD does it for specific
interfaces only).

was: if_lastchange get updated on every packet transmission/receipt.
now: if_lastchange get updated when IFF_UP is changed.

Revision 1.12 / (download) - annotate - [select for diffs], Tue Jun 12 21:41:32 2001 UTC (23 years ago) by deraadt
Branch: MAIN
Changes since 1.11: +23 -1 lines
Diff to previous 1.11 (colored)

one less setuid program (use an ioctl like pppstats)

Revision 1.11 / (download) - annotate - [select for diffs], Thu May 17 18:41:46 2001 UTC (23 years, 1 month ago) by provos
Branch: MAIN
Changes since 1.10: +76 -62 lines
Diff to previous 1.10 (colored)

convert mbuf and cluster allocation to pool, mostly from NetBSD
okay art@ miod@

Revision 1.9.4.1 / (download) - annotate - [select for diffs], Mon May 14 22:40:01 2001 UTC (23 years, 1 month ago) by niklas
Branch: SMP
Changes since 1.9: +14 -13 lines
Diff to previous 1.9 (colored)

merge in approximately 2.9 into SMP branch

Revision 1.10 / (download) - annotate - [select for diffs], Tue Mar 13 05:16:06 2001 UTC (23 years, 3 months ago) by mickey
Branch: MAIN
CVS Tags: OPENBSD_2_9_BASE, OPENBSD_2_9
Changes since 1.9: +14 -13 lines
Diff to previous 1.9 (colored)

allow configuring number of these in ukc

Revision 1.9 / (download) - annotate - [select for diffs], Thu Apr 22 20:02:43 1999 UTC (25 years, 1 month ago) by art
Branch: MAIN
CVS Tags: kame_19991208, SMP_BASE, OPENBSD_2_8_BASE, OPENBSD_2_8, OPENBSD_2_7_BASE, OPENBSD_2_7, OPENBSD_2_6_BASE, OPENBSD_2_6
Branch point for: SMP
Changes since 1.8: +1 -2 lines
Diff to previous 1.8 (colored)

we don't need to include buf.h

Revision 1.8 / (download) - annotate - [select for diffs], Fri Sep 5 04:27:01 1997 UTC (26 years, 9 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_2_5_BASE, OPENBSD_2_5, OPENBSD_2_4_BASE, OPENBSD_2_4, OPENBSD_2_3_BASE, OPENBSD_2_3, OPENBSD_2_2_BASE, OPENBSD_2_2
Changes since 1.7: +2 -2 lines
Diff to previous 1.7 (colored)

Minor changes from ppp 2.3.1

Revision 1.7 / (download) - annotate - [select for diffs], Thu Aug 22 00:35:52 1996 UTC (27 years, 9 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_1_BASE, OPENBSD_2_1, OPENBSD_2_0_BASE, OPENBSD_2_0
Changes since 1.6: +9 -9 lines
Diff to previous 1.6 (colored)

__OpenBSD__

Revision 1.6 / (download) - annotate - [select for diffs], Fri Aug 9 09:59:19 1996 UTC (27 years, 10 months ago) by niklas
Branch: MAIN
Changes since 1.5: +2 -2 lines
Diff to previous 1.5 (colored)

Silly unit number calculation changed to use sc_unit instead

Revision 1.5 / (download) - annotate - [select for diffs], Mon Jun 10 07:28:25 1996 UTC (28 years ago) by deraadt
Branch: MAIN
Changes since 1.4: +3 -3 lines
Diff to previous 1.4 (colored)

init sc_unit properly

Revision 1.4 / (download) - annotate - [select for diffs], Fri May 10 12:31:11 1996 UTC (28 years, 1 month ago) by deraadt
Branch: MAIN
Changes since 1.3: +7 -6 lines
Diff to previous 1.3 (colored)

if_name/if_unit -> if_xname/if_softc

Revision 1.3 / (download) - annotate - [select for diffs], Thu Mar 14 08:41:45 1996 UTC (28 years, 3 months ago) by tholo
Branch: MAIN
Changes since 1.2: +4 -3 lines
Diff to previous 1.2 (colored)

From Lite2; mark terminal devices as exclusively opened before flushing

Revision 1.2 / (download) - annotate - [select for diffs], Sun Mar 3 21:07:10 1996 UTC (28 years, 3 months ago) by niklas
Branch: MAIN
Changes since 1.1: +11 -7 lines
Diff to previous 1.1 (colored)

From NetBSD: 960217 merge

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Wed Oct 18 08:53:06 1995 UTC (28 years, 8 months ago) by deraadt
CVS Tags: netbsd_1_1
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

initial import of NetBSD tree

Revision 1.1 / (download) - annotate - [select for diffs], Wed Oct 18 08:53:06 1995 UTC (28 years, 8 months ago) by deraadt
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.