svn commit: r563491 - in head/net/igmpproxy: . files
Luca Pizzamiglio
pizzamig at FreeBSD.org
Sun Jan 31 14:33:09 UTC 2021
Author: pizzamig
Date: Sun Jan 31 14:33:08 2021
New Revision: 563491
URL: https://svnweb.freebsd.org/changeset/ports/563491
Log:
net/igmpproxy: Update to 0.3
igmpproxy update to 0.3, mostly fixing previous FreeBSD build issues.
MAX_IF patch kept and raised further to retain operation when many addresses are found in the system. (On OPNsense/pfSense 40 addresses can be too low.)
PR: 252857
Submitted by: Franco Fichtner <franco at opnsense.org> (maintainer)
Deleted:
head/net/igmpproxy/files/patch-src_igmpproxy.c
Modified:
head/net/igmpproxy/Makefile
head/net/igmpproxy/distinfo
head/net/igmpproxy/files/patch-src_igmpproxy.h
Modified: head/net/igmpproxy/Makefile
==============================================================================
--- head/net/igmpproxy/Makefile Sun Jan 31 14:30:40 2021 (r563490)
+++ head/net/igmpproxy/Makefile Sun Jan 31 14:33:08 2021 (r563491)
@@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= igmpproxy
-DISTVERSION= 0.2.1
-PORTREVISION= 1
+DISTVERSION= 0.3
PORTEPOCH= 1
CATEGORIES= net
Modified: head/net/igmpproxy/distinfo
==============================================================================
--- head/net/igmpproxy/distinfo Sun Jan 31 14:30:40 2021 (r563490)
+++ head/net/igmpproxy/distinfo Sun Jan 31 14:33:08 2021 (r563491)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1520836770
-SHA256 (pali-igmpproxy-0.2.1_GH0.tar.gz) = 6faa1f42ba323f60a9eb4958550e25b2e7e9c645da32c52ba12db0c9bdfce1ba
-SIZE (pali-igmpproxy-0.2.1_GH0.tar.gz) = 42201
+TIMESTAMP = 1610439794
+SHA256 (pali-igmpproxy-0.3_GH0.tar.gz) = 1aa45dbcd253531b92c09cef3ba0af7056fc2f89395948177ba27f8650b55449
+SIZE (pali-igmpproxy-0.3_GH0.tar.gz) = 42656
Modified: head/net/igmpproxy/files/patch-src_igmpproxy.h
==============================================================================
--- head/net/igmpproxy/files/patch-src_igmpproxy.h Sun Jan 31 14:30:40 2021 (r563490)
+++ head/net/igmpproxy/files/patch-src_igmpproxy.h Sun Jan 31 14:33:08 2021 (r563491)
@@ -1,31 +1,11 @@
---- src/igmpproxy.h.orig 2018-02-13 19:17:30 UTC
+--- src/igmpproxy.h.orig 2021-01-12 08:24:34 UTC
+++ src/igmpproxy.h
-@@ -35,9 +35,6 @@
- * igmpproxy.h - Header file for common includes.
- */
+@@ -112,7 +112,7 @@ void my_log( int Serverity, int Errno, const char *Fmt
--#include "config.h"
--#include "os.h"
--
- #include <errno.h>
- #include <stdarg.h>
- #include <stdio.h>
-@@ -60,6 +57,9 @@
- #include <netinet/in.h>
- #include <arpa/inet.h>
-
-+#include "os.h"
-+#include "config.h"
-+
- /*
- * Limit on length of route data
- */
-@@ -113,7 +113,7 @@ void my_log( int Serverity, int Errno, c
-
/* ifvc.c
*/
-#define MAX_IF 40 // max. number of interfaces recognized
-+#define MAX_IF 100 // max. number of interfaces recognized
++#define MAX_IF 140 // max. number of interfaces recognized
// Interface states
#define IF_STATE_DISABLED 0 // Interface should be ignored.
More information about the svn-ports-all
mailing list