miniupnp/miniupnpd/upnpevents.h

58 lines
1.3 KiB
C
Raw Normal View History

2024-10-06 23:23:39 +02:00
/* $Id: upnpevents.h,v 1.13 2024/10/04 23:18:55 nanard Exp $ */
2011-09-28 21:13:20 +02:00
/* MiniUPnP project
* http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
2024-10-06 23:23:39 +02:00
* (c) 2008-2024 Thomas Bernard
2011-09-28 21:13:20 +02:00
* This software is subject to the conditions detailed
* in the LICENCE file provided within the distribution */
#ifndef UPNPEVENTS_H_INCLUDED
#define UPNPEVENTS_H_INCLUDED
2011-09-28 21:13:20 +02:00
/* for fd_set */
#include <sys/select.h>
2011-09-28 21:13:20 +02:00
#include "config.h"
#ifdef ENABLE_EVENTS
enum subscriber_service_enum {
EWanCFG = 1,
EWanIPC,
#ifdef ENABLE_L3F_SERVICE
EL3F,
#endif
#ifdef ENABLE_6FC_SERVICE
E6FC,
#endif
#ifdef ENABLE_DP_SERVICE
EDP,
#endif
};
void
upnp_event_var_change_notify(enum subscriber_service_enum service);
const char *
upnpevents_addSubscriber(const char * eventurl,
const char * callback, int callbacklen,
int timeout);
int
upnpevents_removeSubscriber(const char * sid, int sidlen);
2015-12-11 16:29:32 -08:00
const char *
upnpevents_renewSubscription(const char * sid, int sidlen, int timeout);
2011-09-28 21:13:20 +02:00
void upnpevents_selectfds(fd_set *readset, fd_set *writeset, int * max_fd);
void upnpevents_processfds(fd_set *readset, fd_set *writeset);
#ifdef USE_MINIUPNPDCTL
void write_events_details(int s);
#endif
#endif /* ENABLE_EVENTS */
#ifdef USE_SYSTEMD
void upnp_update_status(void);
2011-09-28 21:13:20 +02:00
#endif
2011-09-28 21:13:20 +02:00
#endif