Increase MAX_LAN_ADDR to 8

This commit is contained in:
Justin Maggard 2018-01-11 16:09:15 -08:00
parent 3e9ca13fa3
commit c2a9186c71
3 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
# port for HTTP (descriptions, SOAP, media transfer) traffic
port=8200
# network interfaces to serve, comma delimited
# network interfaces to serve, comma delimited (8 interfaces max)
#network_interface=eth0
# specify the user account name or uid to run as

View File

@ -26,7 +26,7 @@ There should be no need to change this.
.fi
.IP "\fBnetwork_interface\fP"
Network interfaces to serve, comma delimited. Defaults to all.
Network interfaces to serve, comma delimited. Maximum is 8 interfaces. Defaults to all.
.IP "\fBstrict_dlna\fP"
.nf

View File

@ -34,7 +34,7 @@
#include <time.h>
#include <fcntl.h>
#define MAX_LAN_ADDR 4
#define MAX_LAN_ADDR 8
/* structure for storing lan addresses
* with ascii representation and mask */
struct lan_addr_s {