miniupnp/miniupnpd/upnpevents.h
Thomas Bernard 214464d8db
(c) 2024
2024-10-06 23:23:39 +02:00

58 lines
1.3 KiB
C

/* $Id: upnpevents.h,v 1.13 2024/10/04 23:18:55 nanard Exp $ */
/* MiniUPnP project
* http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
* (c) 2008-2024 Thomas Bernard
* This software is subject to the conditions detailed
* in the LICENCE file provided within the distribution */
#ifndef UPNPEVENTS_H_INCLUDED
#define UPNPEVENTS_H_INCLUDED
/* for fd_set */
#include <sys/select.h>
#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);
const char *
upnpevents_renewSubscription(const char * sid, int sidlen, int timeout);
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);
#endif
#endif