From 64e3fdbdce48eb238220e9473859e03dcf42ba19 Mon Sep 17 00:00:00 2001 From: Bogdan Shatik Date: Sun, 24 Jan 2021 14:52:52 +0300 Subject: eoip: Add package add eoip package,this can create ethernet tunnels compatible with Mikrotik EoIP tunnel. At current moment it is easiest way to create stateless tunnel with Mikrotik. Signed-off-by: Bogdan Shatik --- net/eoip/patches/100-add_LF_to_pidfile.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 net/eoip/patches/100-add_LF_to_pidfile.patch (limited to 'net/eoip/patches') diff --git a/net/eoip/patches/100-add_LF_to_pidfile.patch b/net/eoip/patches/100-add_LF_to_pidfile.patch new file mode 100644 index 000000000..bb66d146d --- /dev/null +++ b/net/eoip/patches/100-add_LF_to_pidfile.patch @@ -0,0 +1,11 @@ +--- a/eoip.c 2013-09-25 22:50:48.272763057 +0200 ++++ b/eoip.c 2013-09-25 22:51:03.804762840 +0200 +@@ -430,7 +430,7 @@ + exit(1); + + mfd = fopen(pidfile, "w"); +- fprintf(mfd,"%d", getpid()); ++ fprintf(mfd,"%d\n", getpid()); + fclose(mfd); + + /* structure of Mikrotik EoIP: -- cgit v1.2.3