miniupnp/minissdpd/openssdpsocket.h

34 lines
962 B
C
Raw Normal View History

/* $Id: openssdpsocket.h,v 1.7 2015/07/21 15:39:38 nanard Exp $ */
2011-09-28 19:14:08 +00:00
/* MiniUPnP project
* http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
* (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 */
#ifndef OPENSSDPSOCKET_H_INCLUDED
#define OPENSSDPSOCKET_H_INCLUDED
2011-09-28 19:14:08 +00:00
#include "minissdpdtypes.h"
2011-09-28 19:14:08 +00:00
/**
* Open a socket and configure it for receiving SSDP packets
*
* @param ipv6 open INET6 or INET socket
* @param ttl multicast TTL
2011-09-28 19:14:08 +00:00
* @return socket
*/
int
OpenAndConfSSDPReceiveSocket(int ipv6, unsigned char ttl);
2011-09-28 19:14:08 +00:00
/**
* Add or Drop the multicast membership for SSDP on the interface
* @param s the socket
* @param lan_addr the LAN address or interface name
2011-09-28 19:14:08 +00:00
* @param ipv6 IPv6 or IPv4
* @param drop 0 to add, 1 to drop
* return -1 on error, 0 on success */
int
AddDropMulticastMembership(int s, struct lan_addr_s * lan_addr, int ipv6, int drop);
2011-09-28 19:14:08 +00:00
#endif