index
:
wireguard-openbsd
jd/histogram
jd/queueboosts
jd/simplify-queueing
master
WireGuard implementation for the OpenBSD kernel
Matt Dunwoodie
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
sys
/
net
/
if_vxlan.c
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
Use mallocarray(9) & put some free(9) sizes for M_IPMOPTS allocations.
mpi
2019-06-10
1
-5
/
+5
*
Removes the KERNEL_LOCK() from bridge(4)'s output fast-path.
mpi
2019-04-28
1
-2
/
+2
*
a first cut at converting some virtual ethernet interfaces to if_vinput
dlg
2019-04-23
1
-4
/
+3
*
Convert more MH_ALIGN() to m_align(). Also switch from m_gethdr/M_GETHDR
claudio
2018-12-03
1
-4
/
+4
*
add support for txprio configuration
dlg
2018-11-15
1
-3
/
+25
*
the stack already counts bytes and packets, so don't do it again here.
dlg
2018-08-17
1
-4
/
+1
*
add support for setting the tunnel df bit.
dlg
2018-02-20
1
-2
/
+15
*
Do not call ip_output() recursively in vxlan_start().
mpi
2018-01-22
1
-2
/
+32
*
Creating a cloned interface could return ENOMEM due to temporary
bluhm
2018-01-09
1
-5
/
+2
*
Sprinkle some NET_ASSERT_LOCKED(), const and co to prepare running
mpi
2017-11-20
1
-1
/
+2
*
Remove Multicast and Broadcast flags from the encapsulated packet in
mpi
2017-10-25
1
-2
/
+14
*
Remove NET_LOCK()'s argument.
mpi
2017-08-11
1
-4
/
+3
*
A missing break in vxlan_sockaddr_cmp() could eventually trick an
reyk
2017-08-10
1
-1
/
+3
*
Introduce sstosa() for converting sockaddr_storage with a type safe
bluhm
2017-05-04
1
-9
/
+8
*
Partially revert previous mallocarray conversions that contain
dhill
2017-04-11
1
-3
/
+3
*
Use mallocarray to allocate multicast group memberships.
dhill
2017-04-09
1
-3
/
+3
*
move counting if_opackets next to counting if_obytes in if_enqueue.
dlg
2017-01-22
1
-3
/
+1
*
As noticed by bluhm@ the netlock is required for the multicast cleanup
mikeb
2017-01-04
1
-25
/
+5
*
Don't try to reconfigure the multicast group in the detach handler of
reyk
2017-01-03
1
-7
/
+6
*
make v6 tunnel address handling consider ipv6 scope.
dlg
2016-12-13
1
-11
/
+15
*
Rremoves 'struct route_in6 *' argument from in6_selectsrc().
mpi
2016-12-02
1
-2
/
+2
*
For virtual Ethernet drivers that don't have a technical limit of the
reyk
2016-11-29
1
-2
/
+2
*
Make kernel without INET6 compile again.
bluhm
2016-10-25
1
-11
/
+49
*
Fulfil our contractual obligations with ether_input
mikeb
2016-10-14
1
-9
/
+19
*
Fix vxlan_lookup() to comply the assumption of ether_input(). Put the
yasuoka
2016-10-07
1
-3
/
+21
*
Accept a packet smaller than ETHERMIN.
yasuoka
2016-09-30
1
-2
/
+2
*
Rename brtag_src/brtag_dst to brtag_peer/brtag_local to avoid
reyk
2016-09-29
1
-5
/
+5
*
Fix vxlan to use the destination address correctly.
yasuoka
2016-09-28
1
-3
/
+3
*
Fix the way of checking the length of vxlan packet and made it strict.
yasuoka
2016-09-28
1
-5
/
+4
*
Remove the IFF_LINK0 option to send the response back to the peer's
reyk
2016-09-04
1
-9
/
+1
*
Add support for a multipoint-to-multipoint mode in vxlan(4). In this
reyk
2016-09-03
1
-19
/
+77
*
whitespace
reyk
2016-08-07
1
-2
/
+2
*
Define VXLAN_VNI_UNSET and VXLAN_VNI_MAX instead of using magic numbers.
reyk
2016-08-07
1
-7
/
+7
*
Add support for IPv6 tunnel endpoints. This currently only works for
reyk
2016-08-06
1
-88
/
+226
*
Fix multicast mode (destination is a multicast IP): the BCAST and
reyk
2016-08-06
1
-6
/
+2
*
We're always ready! So send IFQ_SET_READY() to the bitbucket.
mpi
2016-04-13
1
-2
/
+1
*
Drop packets whose VNI flag is not set and VNI is not zero
goda
2016-01-22
1
-2
/
+2
*
No need for a splnet() dance around IFQ_DEQUEUE() anymore.
mpi
2016-01-14
1
-5
/
+2
*
remove old lint annotations
tedu
2015-12-05
1
-2
/
+1
*
Keep "struct vxlan_softc" private to prevent pulling more headers when
mpi
2015-11-27
1
-1
/
+20
*
arp_ifinit() is no longer required.
mpi
2015-10-25
1
-4
/
+1
*
tweak the vnetid so it can be optional and therefore cleared/deleted.
dlg
2015-10-23
1
-15
/
+35
*
Fix previous. The port number is not included in sc_src and it is
yasuoka
2015-10-15
1
-5
/
+3
*
dont need to do suser checks in ioctl paths cos if.c does them for us.
dlg
2015-10-12
1
-12
/
+1
*
When multiple vxlan interfaces are configured with same VNI, select the
yasuoka
2015-10-03
1
-4
/
+32
*
if_put after the if_get.
dlg
2015-09-09
1
-1
/
+3
*
Remove splassert(IPL_NET) from if_input().
mpi
2015-07-20
1
-4
/
+1
*
Raise SPL to SPL_NET before calling if_input() in vxlan_lookup().
goda
2015-07-18
1
-1
/
+4
*
Increment if_ipackets in if_input().
mpi
2015-06-24
1
-3
/
+1
*
ether_input() should not longer be called directly so convert to
mpi
2015-04-13
1
-10
/
+5
[next]