2015-08-06 13:20:30 +00:00
|
|
|
/* $Id: config.h,v 1.9 2015/08/06 13:16:58 nanard Exp $ */
|
2011-09-28 19:14:08 +00:00
|
|
|
/* MiniUPnP project
|
|
|
|
* http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
|
2015-08-06 13:20:30 +00:00
|
|
|
* (c) 2006-2015 Thomas Bernard
|
2011-09-28 19:14:08 +00:00
|
|
|
* This software is subject to the conditions detailed
|
|
|
|
* in the LICENCE file provided within the distribution */
|
2012-09-20 20:52:51 +00:00
|
|
|
#ifndef CONFIG_H_INCLUDED
|
|
|
|
#define CONFIG_H_INCLUDED
|
2011-09-28 19:14:08 +00:00
|
|
|
|
2015-08-06 13:20:39 +00:00
|
|
|
#define MINISSDPD_VERSION "1.4"
|
2015-08-06 13:20:30 +00:00
|
|
|
|
2011-09-28 19:14:08 +00:00
|
|
|
/* use BSD daemon() ? */
|
|
|
|
#define USE_DAEMON
|
|
|
|
|
|
|
|
/* set the syslog facility to use. See man syslog(3) and syslog.conf(5). */
|
|
|
|
#define LOG_MINISSDPD LOG_DAEMON
|
|
|
|
|
|
|
|
/* enable IPv6 */
|
|
|
|
#define ENABLE_IPV6
|
|
|
|
|
|
|
|
/* Maximum number of network interface we can listen on */
|
|
|
|
#define MAX_IF_ADDR 8
|
|
|
|
|
2015-05-26 16:50:14 +00:00
|
|
|
/* The size of unix socket response buffer */
|
|
|
|
#define RESPONSE_BUFFER_SIZE (1024 * 4)
|
|
|
|
|
2014-11-28 14:50:06 +00:00
|
|
|
/* Uncomment the following line in order to make minissdpd
|
|
|
|
* listen on 1.2.3.4:1900 instead of *:1900
|
|
|
|
* Note : it prevents broadcast packets to be received,
|
|
|
|
* at least with linux */
|
|
|
|
/*#define SSDP_LISTEN_ON_SPECIFIC_ADDR*/
|
|
|
|
|
2011-09-28 19:14:08 +00:00
|
|
|
#endif
|