aboutsummaryrefslogtreecommitdiffstats
path: root/src/uapi_linux.go (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Allows passing UAPI fd to serviceMathias Hall-Andersen2017-11-171-48/+69
|
* Clean up error handling of listen portJason A. Donenfeld2017-09-261-1/+1
|
* Fixed TUN interface implementation os OS XMathias Hall-Andersen2017-09-031-6/+0
|
* Improved receive.goMathias Hall-Andersen2017-08-111-1/+6
| | | | | | | | | | | - Fixed configuration listen-port semantics - Improved receive.go code for updating listen port - Updated under load detection, how follows the kernel space implementation - Fixed trie bug accidentally introduced in last commit - Added interface name to log (format still subject to change) - Can now configure the logging level using the LOG_LEVEL variable - Begin porting netsh.sh tests - A number of smaller changes
* Number of fixes in response to code reviewMathias Hall-Andersen2017-08-071-6/+25
| | | | | This version cannot complete a handshake. The program will panic upon receiving any message on the UDP socket.
* First set of code review patchesMathias Hall-Andersen2017-08-041-7/+6
|
* Create /var/run/wireguard if non-existentMathias Hall-Andersen2017-08-021-1/+15
|
* Remove stale unix socketMathias Hall-Andersen2017-08-011-1/+28
|
* Moved remaining platform dependent UAPI codeMathias Hall-Andersen2017-07-201-0/+9
|
* Conforming to the cross-platform UXMathias Hall-Andersen2017-07-151-0/+83
The implementation now terminates when the unix socket is deleted. Currently we are unable to use fsnotify (on linux), since it does not notify on the deletion of open files. The implementation can now daemonize (on linux) or be kept in the foreground by providing the necessary flag.