summaryrefslogtreecommitdiff
path: root/sys/net/if_pppoe.c
AgeCommit message (Collapse)Author
2006-07-11Error messages from remote may not be '\0' terminated.Can Erkin Acar
Also cleanup error message device name printing. Based on diff from NetBSD via Andrey Matveev Also, use log when printing error messages, and syslog will handle any nonprintable characters, discussed with deraadt@
2006-03-25allow bpf(4) to ignore packets based on their direction (inbound orDamien Miller
outbound), using a new BIOCSDIRFILT ioctl; guidance, feedback and ok canacar@
2006-03-04With the exception of two other small uncommited diffs this movesBrad Smith
the remainder of the network stack from splimp to splnet. ok miod@
2006-01-04Remove redundant calls to bpfdetach.Can Erkin Acar
ok brad@
2005-10-08Prevent information leak by using a random hunique value instead ofCan Erkin Acar
the address of the softc. Reported by Peter Phillip via PR-4501.
2005-06-07fix a possible panic in error path,Can Erkin Acar
do not try to check debug status of a non existing interface in server mode.
2005-01-01Disable timeout before destroying a pppoe interfaceCan Erkin Acar
ok deraadt@, henning@, krw@
2004-11-29plug memory leaks on errorPatrick Latifi
ok canacar markus millert
2004-11-28In kernel pppoe client, a simple IPv4 only implementation.Can Erkin Acar
Initial porting from NetBSD by David Berghoff. Modified/simplified to match our sppp implementation. ok deraadt@