summaryrefslogtreecommitdiffstats
path: root/src/wireguard (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Upgraded treebitmap dependencytestsMathias Hall-Andersen2020-03-161-1/+1
|
* Additional in-order queue test for routerMathias Hall-Andersen2020-02-261-7/+74
|
* Fixed unit testsMathias Hall-Andersen2020-02-216-64/+77
|
* More comprehensive unit tests for routerMathias Hall-Andersen2020-02-209-563/+625
|
* Simplified router codeMathias Hall-Andersen2020-02-1615-826/+638
|
* Fixed EINVAL on read4/6 from invalid namelenMathias Hall-Andersen2020-02-164-12/+15
|
* Bumped crate versions.Mathias Hall-Andersen2020-02-126-23/+58
|
* Squashed commit of the following:Mathias Hall-Andersen2020-02-0111-246/+277
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | commit 1e26a0bef44e65023a97a16ecf3b123e688d19f7 Author: Mathias Hall-Andersen <mathias@hall-andersen.dk> Date: Sat Feb 1 14:36:50 2020 +0100 Initial version of sticky sockets for Linux commit 605cc656ad235d09ba6cd12d03dee2c5e0a9a80a Author: Mathias Hall-Andersen <mathias@hall-andersen.dk> Date: Thu Jan 30 14:57:00 2020 +0100 Clear src when sendmsg fails with EINVAL commit dffd2b228af70f681e2a161642bbdaa348419bf3 Author: Mathias Hall-Andersen <mathias@hall-andersen.dk> Date: Sun Jan 26 14:01:28 2020 +0100 Fix typoes commit 2015663706fbe15ed1ac443a31de86b3e6c643c7 Author: Mathias Hall-Andersen <mathias@hall-andersen.dk> Date: Sun Jan 26 13:51:59 2020 +0100 Restructure of public key -> peer state Restructured the mapping of public keys to peer state in the project. The handshake device is now generic over an opaque type, which enables it to be the sole place where public keys are mapped to the peer states. This gets rid of the "peer" map in the WireGuard devices and avoids having to include the public key in the handshake peer state. commit bbcfaad4bcc5cf16bacdef0cefe7d29ba1519a23 Author: Mathias Hall-Andersen <mathias@hall-andersen.dk> Date: Fri Jan 10 21:10:27 2020 +0100 Fixed bind6 also binding on IPv4 commit acbca236b70598c20c24de474690bcad883241d4 Author: Mathias Hall-Andersen <mathias@hall-andersen.dk> Date: Thu Jan 9 11:24:13 2020 +0100 Work on sticky sockets
* Fixed typo in under load codecleanMathias Hall-Andersen2019-12-274-24/+64
|
* Remove unused under_load codeMathias Hall-Andersen2019-12-262-18/+10
|
* Make under_load global for WireGuard deviceMathias Hall-Andersen2019-12-269-323/+61
|
* Remove unused test code.Mathias Hall-Andersen2019-12-219-459/+478
| | | | | | | - make naming consistent with the kernel module. - better distribution of functionality from src/wireguard.rs - more consistent "import pattern" throughout the project. - remove unused test code.
* Constant renamed to be consistent with kernel WGMathias Hall-Andersen2019-12-163-6/+7
|
* Clean dead codeMathias Hall-Andersen2019-12-1614-86/+43
|
* Revert to crossbeamMathias Hall-Andersen2019-12-165-45/+18
|
* Added profiler featureMathias Hall-Andersen2019-12-149-42/+92
|
* Remove crossbeam dependencyMathias Hall-Andersen2019-12-107-71/+84
|
* FormattingMathias Hall-Andersen2019-12-099-42/+45
|
* Move to run queueMathias Hall-Andersen2019-12-098-250/+477
|
* Fixed inbound job bug (add to sequential queue)Mathias Hall-Andersen2019-12-0610-207/+289
|
* Moving away from peer threadsMathias Hall-Andersen2019-12-0311-407/+638
|
* Work on netlink IF event code for LinuxMathias Hall-Andersen2019-11-273-85/+157
|
* Enable up/down from configuration interfaceMathias Hall-Andersen2019-11-253-13/+15
|
* Make IO traits suitable for Tun events (up/down)Mathias Hall-Andersen2019-11-249-53/+77
|
* DaemonizationMathias Hall-Andersen2019-11-213-4/+4
|
* Clean dependencies and importsMathias Hall-Andersen2019-11-214-15/+21
|
* Better compartmentalization of cryptokey routerMathias Hall-Andersen2019-11-186-185/+395
|
* Bug fixes from compliance tests with WireGuardMathias Hall-Andersen2019-11-1811-230/+291
|
* Update configuration APIMathias Hall-Andersen2019-11-175-16/+25
|
* Update UAPI semantics for removeMathias Hall-Andersen2019-11-152-8/+5
|
* Work on UAPI serialize deviceMathias Hall-Andersen2019-11-112-1/+4
|
* Removal of secret key in the handshake moduleMathias Hall-Andersen2019-11-086-169/+190
|
* Implement disable/enable timersMathias Hall-Andersen2019-11-066-88/+138
|
* Work on Up/Down operation on WireGuard deviceMathias Hall-Andersen2019-11-047-143/+261
|
* Work on UAPI parserMathias Hall-Andersen2019-11-032-16/+10
|
* Work on configuration interfaceMathias Hall-Andersen2019-11-025-9/+43
|
* Add derived_sessionMathias Hall-Andersen2019-10-312-8/+19
|
* Work on timer semanticsMathias Hall-Andersen2019-10-3110-80/+181
|
* Remove unused dependenciesMathias Hall-Andersen2019-10-303-5/+18
|
* Change router job to accommodate keep_key_freshMathias Hall-Andersen2019-10-305-140/+139
|
* Unified use of make_packet during testsMathias Hall-Andersen2019-10-296-119/+144
|
* First full test of pure WireGuardMathias Hall-Andersen2019-10-288-60/+184
|
* Fixed Ordering::Acquire -> Ordering::SeqCst typoMathias Hall-Andersen2019-10-232-4/+6
|
* Work on pure WireGuard testMathias Hall-Andersen2019-10-232-41/+116
|
* Moved IO traits into platform moduleMathias Hall-Andersen2019-10-2314-457/+49
|
* Work on platform specific code (Linux)Mathias Hall-Andersen2019-10-237-223/+93
|
* Work on porting timer semantics and linux platformMathias Hall-Andersen2019-10-166-43/+100
|
* Work on Linux platform codeMathias Hall-Andersen2019-10-1331-0/+5549