svn commit: r481067 - in head/net/igmpproxy: . files

Steve Wills swills at FreeBSD.org
Mon Oct 1 20:50:47 UTC 2018


Author: swills
Date: Mon Oct  1 20:50:46 2018
New Revision: 481067
URL: https://svnweb.freebsd.org/changeset/ports/481067

Log:
  net/igmpproxy: increase MAX_IF
  
  to work around error on systems with larger numbers of network addresses
  
  PR:		231800
  Submitted by:	Franco Fichtner <franco at opnsense.org> (maintainer)

Modified:
  head/net/igmpproxy/Makefile   (contents, props changed)
  head/net/igmpproxy/files/patch-src_igmpproxy.h   (contents, props changed)
  head/net/igmpproxy/pkg-descr   (contents, props changed)

Modified: head/net/igmpproxy/Makefile
==============================================================================
--- head/net/igmpproxy/Makefile	Mon Oct  1 20:32:49 2018	(r481066)
+++ head/net/igmpproxy/Makefile	Mon Oct  1 20:50:46 2018	(r481067)
@@ -3,6 +3,7 @@
 
 PORTNAME=	igmpproxy
 DISTVERSION=	0.2.1
+PORTREVISION=	1
 PORTEPOCH=	1
 CATEGORIES=	net
 

Modified: head/net/igmpproxy/files/patch-src_igmpproxy.h
==============================================================================
--- head/net/igmpproxy/files/patch-src_igmpproxy.h	Mon Oct  1 20:32:49 2018	(r481066)
+++ head/net/igmpproxy/files/patch-src_igmpproxy.h	Mon Oct  1 20:50:46 2018	(r481067)
@@ -20,3 +20,12 @@
  /*
   * 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.

Modified: head/net/igmpproxy/pkg-descr
==============================================================================
--- head/net/igmpproxy/pkg-descr	Mon Oct  1 20:32:49 2018	(r481066)
+++ head/net/igmpproxy/pkg-descr	Mon Oct  1 20:50:46 2018	(r481067)
@@ -2,4 +2,4 @@ igmpproxy is a simple multicast routing daemon based o
 forwarding to dynamically route multicast traffic.
 Reqiures multicast forwarding enabled
 
-WWW: https://sourceforge.net/projects/igmpproxy/
+WWW: https://github.com/pali/igmpproxy


More information about the svn-ports-all mailing list