Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Implement socket server code that properly handles async I/O, partial | 2016-09-30 | 1 | -1/+10 | |
| | | | | | | | | | | | messages, multiple messages per buffer and important things like connection limits and file descriptor accounting. It works with TCP connections as well as switch(4). The ofrelay.c part replaces networking that was in ofp.c and will soon handle all socket connections of switchd. It is called "ofrelay" because it will be used as client, server, and forwarder. OK rzalamena@ | ||||
* | Replace memset in ibuf_zero with explicit_bzero as done in iked. | 2016-09-29 | 1 | -4/+6 | |
| | |||||
* | It is ok to call free() on NULL pointers. | 2016-09-23 | 1 | -3/+3 | |
| | | | | ok reyk@ | ||||
* | does not need sys/param.h | 2016-08-30 | 1 | -2/+1 | |
| | |||||
* | Import switchd(8), a basic WIP OpenFlow implementation for OpenBSD. | 2016-07-19 | 1 | -0/+226 | |
switchd consists of two parts: 1. switchd(8) and switchctl(8), an OpenFlow controller or "vswitch". 2. switch(4), an OpenFlow-aware kernel "bridge". This the 1st part, the driver will be imported later. The code will remain disabled for a while, but it helps development to have it in the tree. switchd currently supports partial OpenFlow 1.0, but the goal is to use OpenFlow 1.3.5 instead (switch(4) already does 1.3.5). For more background information see: http://www.openbsd.org/papers/bsdcan2016-switchd.pdf https://youtu.be/Cuo0qT-lqig With help from yasuoka@ goda@ Import discussed with deraadt@ |