aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.go (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Align with go library layoutMathias Hall-Andersen2018-02-041-196/+0
|
* Removed profiler codeMathias Hall-Andersen2017-12-021-8/+0
|
* More consistent use of signal structMathias Hall-Andersen2017-12-011-2/+9
|
* Added missing exit codesMathias Hall-Andersen2017-11-301-0/+5
|
* Allows passing UAPI fd to serviceMathias Hall-Andersen2017-11-171-18/+41
|
* Moved TUN device creation to pre-forkMathias Hall-Andersen2017-11-141-33/+69
|
* Initial working source cachingMathias Hall-Andersen2017-11-141-0/+1
|
* Fixed message header length in conn_linuxMathias Hall-Andersen2017-10-271-1/+4
|
* Initial implementation of source cachingMathias Hall-Andersen2017-10-161-2/+0
| | | | Yet untested.
* Begin incorporating new src cache into receiveMathias Hall-Andersen2017-10-071-0/+1
|
* Improved receive.goMathias Hall-Andersen2017-08-111-1/+15
| | | | | | | | | | | - 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
* Close UAPI socket before exitMathias Hall-Andersen2017-08-011-3/+25
|
* Moved remaining platform dependent UAPI codeMathias Hall-Andersen2017-07-201-0/+9
|
* Fixed deadlock in index.goMathias Hall-Andersen2017-07-171-7/+13
|
* Conforming to the cross-platform UXMathias Hall-Andersen2017-07-151-25/+48
| | | | | | | | | 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.
* Terminate on interface deletionMathias Hall-Andersen2017-07-131-11/+20
| | | | | | | Program now terminates when the interface is removed Increases the number of os threads (relevant for Go <1.5, not tested) More consistent commenting Improved logging (additional peer information)
* Fixed incomming initiation bugMathias Hall-Andersen2017-07-101-4/+3
|
* Completed initial version of outbound flowMathias Hall-Andersen2017-06-301-1/+1
|
* Completed get/set configurationMathias Hall-Andersen2017-06-291-10/+15
| | | | | For debugging of "outbound flow" Mostly, a few things still missing
* Work on UAPIMathias Hall-Andersen2017-06-281-27/+18
| | | | | | | Cross-platform API (get operation) Handshake initiation creation process Outbound packet flow Fixes from code-review
* Begin work on outbound packet flowMathias Hall-Andersen2017-06-261-3/+5
|
* Beginning work on TUN interfaceMathias Hall-Andersen2017-06-041-2/+24
| | | | | | | | | | And outbound routing I am not entirely convinced the use of net.IP is a good idea, since the internal representation of net.IP is a byte slice and all constructor functions in "net" return 16 byte slices (padded for IPv4), while the use in this project uses 4 byte slices. Which may be confusing.
* Beginning work on UAPI and routing tableMathias Hall-Andersen2017-05-301-0/+28