Commit Graph
341 Commits
Author SHA1 Message Date
Logan oos EvenandGitHub aac58a88ec fixed supernode's federation behavior (auth error) (#707) 2021-06-07 20:54:22 +05:45
Logan oos EvenandGitHub 2e1991ecf3 added compiler check for special intrinsic (#706) 2021-06-07 18:18:45 +05:45
Logan oos EvenandGitHub 1586ae62a7 made n2n react more swiftly to (D)DNS changes (#705) 2021-06-07 17:57:49 +05:45
Logan oos EvenandGitHub 75ab1fc5aa made internal changes to cli parameter processing (#702) 2021-06-05 18:56:47 +05:45
Logan oos EvenandGitHub 3c6ab56d3f allowed (temporarily) initially non-resolving supernode names (#701) 2021-06-05 17:54:32 +05:45
Logan oos EvenandGitHub c55e3e3246 multithreaded supernode name resolution (#645) 2021-06-04 03:52:12 +05:45
Logan oos EvenandGitHub a28327a0af added user-password edge authentication (#673) 2021-06-04 03:11:22 +05:45
Logan oos EvenandGitHub 1a523f5e1a fixed supernode segmentation fault (#697) 2021-05-24 00:20:52 +05:45
Logan oos EvenandGitHub 667b7df083 added memrnd() (#685) 2021-04-19 00:47:37 +05:45
randomize00andGitHub cfa92d28d8 add callback function for hin2n to protect socket (#684) 2021-04-14 11:31:50 +05:45
randomize00andGitHub e2c687558f fix potential memory leak (#682)
authored-by: randomize00 <randomize00@users.noreply.github.com>
2021-04-07 14:31:40 +05:45
Logan oos EvenandGitHub 12e81c6be3 typo
'0' is legit load or ping
2021-04-06 11:45:40 +05:45
Luca Deri aa18bd3036 Warning fixes 2021-04-05 19:34:54 +02:00
Sven RoedererandGitHub 23c18e349f drop non portable SOL_TCP / fix MacOS v2 (#680)
* Revert "Fix compilation on MacOS"

in order to another solution

* src: use IPPROTO_TCP in place of SOL_TCP

* use the more specific IPPROTO_TCP type for setsockopt
* fixes build on MacOS

src/edge_utils.c:891:31: error: use of undeclared identifier 'SOL_TCP'; did you mean 'FPP_TCP'?
        setsockopt(eee->sock, SOL_TCP, TCP_NODELAY, &value, sizeof(value));

src/edge_utils.c:894:31: error: use of undeclared identifier 'SOL_TCP'
        setsockopt(eee->sock, SOL_TCP, TCP_CORK, &value, sizeof(value));
                              ^
src/edge_utils.c:894:40: error: use of undeclared identifier 'TCP_CORK'
        setsockopt(eee->sock, SOL_TCP, TCP_CORK, &value, sizeof(value));

* include/n2n.h: drop redefiniton of SOL_TCP for WIN32, as we don't use it anywhere now

* src: only use TCP_CORK on LINUX

* it's LINUX only and fails on Win32 and MacOS (man 7 tcp)
2021-04-05 19:30:53 +02:00
Alfredo Cardigliano 53e930db10 Fix compilation on MacOS 2021-03-29 09:28:13 +02:00
Logan oos EvenandGitHub dcd3801df5 honed tcp implementation (#676) 2021-03-28 00:04:55 +05:45
Logan oos EvenandGitHub a23b459738 fixed memory issue (#675) 2021-03-26 21:13:20 +05:45
Logan oos EvenandGitHub 7c3951a10f revised tcp implementation (#674) 2021-03-26 20:45:31 +05:45
Logan oos EvenandGitHub b949b23e2a narrowed multicast determination (#669) 2021-03-18 19:23:42 +05:45
Logan oos EvenandGitHub edc6f53ca0 prevented transmission of QUERY_PEER on multicast MAC addresses (#668) 2021-03-18 18:14:01 +05:45
Logan oos EvenandGitHub 048fd3e128 fixed another memory issue (#667) 2021-03-18 17:01:12 +05:45
Logan oos EvenandGitHub 1c1a9f5058 fixed small memory issue (#666) 2021-03-18 16:03:22 +05:45
Logan oos EvenandGitHub 969b667aae deprecated solitary options -A, -S, -z (#665) 2021-03-18 10:45:52 +05:45
Logan oos EvenandGitHub f41babcf4d fixed compile warnings (#664) 2021-03-17 12:38:00 +05:45
Logan oos EvenandGitHub 0287837241 skewed supernode selection for the benefit of current supernode in no-pong case (#663) 2021-03-16 23:24:39 +05:45
Logan oos EvenandGitHub aa1f4311f9 adapted packet format (#662)
* adapted packet format
2021-03-16 17:24:59 +05:45
Logan oos EvenandGitHub 23a9c871f8 increased resilience to supernode failure (#660) 2021-03-09 04:46:42 +05:45
Logan oos EvenandGitHub 1bcc64ccb3 fixed unrelated error message (#653) 2021-03-04 16:17:48 +05:45
Logan oos EvenandGitHub 20133f599c improved socket handling (#650) 2021-03-01 14:13:14 +05:45
Logan oos EvenandGitHub d8ae2e89ca fixed edge stall (#649) 2021-03-01 00:12:04 +05:45
Logan oos EvenandGitHub db4b927b8e fixed multicast decode error message (#648) 2021-02-27 21:29:25 +05:45
Logan oos EvenandGitHub 64b8136301 fixed compile warnings (#647) 2021-02-27 20:38:18 +05:45
Logan oos EvenandGitHub e47b492c4d fixed compile warning (#646) 2021-02-27 18:03:04 +05:45
Logan oos EvenandGitHub c8fabbdfe0 added more targeted routing for packet forwarding in federation (#643) 2021-02-23 18:51:14 +05:45
Logan oos EvenandGitHub a482fe112d added TCP support (#627)
(disabled on Windows)
2021-02-22 22:37:47 +05:45
vtcpipandGitHub b42c111527 fix windows compile (#636) 2021-02-10 15:16:16 +05:45
Logan oos EvenandGitHub c73e59341d made gratuitous arp being sent at the right time (#635) 2021-02-08 20:55:11 +05:45
Logan oos EvenandGitHub 54ba76e3bc clarified error message (#634) 2021-02-08 17:24:03 +05:45
Logan oos EvenandGitHub 408f24d778 corrected supernode help text (#633) 2021-02-08 17:04:57 +05:45
Logan oos EvenandGitHub cef5561c5a switched to 2021 (#632) 2021-02-08 16:11:06 +05:45
Logan oos EvenandGitHub aaca1424fd added AVX-512 support to SPECK cipher (#630) 2021-02-08 15:27:29 +05:45
Logan oos EvenandGitHub 12e55935c2 adjusted supernode management port output (#628) 2021-02-07 19:00:58 +05:45
Logan oos EvenandGitHub fb827a843b reworked edge management port output (#623) 2021-02-06 18:24:08 +05:45
Logan oos EvenandGitHub 08a4e332c8 generalized auth scheme handling (#624) 2021-02-03 20:52:41 +05:45
Logan oos EvenandGitHub b3a4eac4d7 enabled windows random numbers for seed (#622) 2021-02-02 18:43:30 +05:45
Logan oos EvenandGitHub 89052c24d5 clarified debug message on unknown ether type (#620) 2021-02-02 16:58:01 +05:45
Logan oos EvenandGitHub 09e8d5e730 limited number of concurrently pinged supernodes (#619) 2021-02-01 18:31:36 +05:45
Logan oos EvenandGitHub 916c423ffe fixed metric parameter passing to wintap.c (#618)
* fixed metric parameter passing to wintap.c

* fixed metric sub/interface command to set metric
2021-02-01 16:19:19 +05:45
Logan oos EvenandGitHub c2741ace2d guarded free() on supernode exit (#615) 2021-01-31 21:12:30 +05:45
Logan oos EvenandGitHub ba9a32fb30 fixed minor timing issues (#616) 2021-01-31 21:12:08 +05:45