mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
net/igmpproxy: increase MAX_IF
to work around error on systems with larger numbers of network addresses PR: 231800 Submitted by: Franco Fichtner <franco@opnsense.org> (maintainer)
This commit is contained in:
parent
b0be2d2598
commit
15eadda4e1
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=481067
3 changed files with 11 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
PORTNAME= igmpproxy
|
PORTNAME= igmpproxy
|
||||||
DISTVERSION= 0.2.1
|
DISTVERSION= 0.2.1
|
||||||
|
PORTREVISION= 1
|
||||||
PORTEPOCH= 1
|
PORTEPOCH= 1
|
||||||
CATEGORIES= net
|
CATEGORIES= net
|
||||||
|
|
||||||
|
|
|
@ -20,3 +20,12 @@
|
||||||
/*
|
/*
|
||||||
* Limit on length of route data
|
* 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
|
||||||
|
|
||||||
|
// Interface states
|
||||||
|
#define IF_STATE_DISABLED 0 // Interface should be ignored.
|
||||||
|
|
|
@ -2,4 +2,4 @@ igmpproxy is a simple multicast routing daemon based on mrouted. It uses IGMP
|
||||||
forwarding to dynamically route multicast traffic.
|
forwarding to dynamically route multicast traffic.
|
||||||
Reqiures multicast forwarding enabled
|
Reqiures multicast forwarding enabled
|
||||||
|
|
||||||
WWW: https://sourceforge.net/projects/igmpproxy/
|
WWW: https://github.com/pali/igmpproxy
|
||||||
|
|
Loading…
Add table
Reference in a new issue