libUPnP 1.14.23
client_table.h
Go to the documentation of this file.
1
2#ifndef CLIENT_TABLE_H
3#define CLIENT_TABLE_H
4
9#ifdef __cplusplus
10extern "C" {
11#endif
12
14#include "TimerThread.h"
15#include "UpnpString.h"
16#include "config.h"
17#include "uri.h"
18
19#include <stdlib.h>
20
22
23#ifdef INCLUDE_CLIENT_APIS
24
33
40
50 const UpnpString *sid);
51
62 const UpnpString *sid);
63
74 token *sid);
75
76#endif /* INCLUDE_CLIENT_APIS */
77
78#ifdef __cplusplus
79}
80#endif /* __cplusplus */
81
82#endif /* CLIENT_TABLE_H */
Header file for GenlibClientSubscription methods.
UpnpString object declaration.
void free_client_subscription(GenlibClientSubscription *sub)
Free memory allocated for client subscription data.
Definition: client_table.c:17
GenlibClientSubscription * GetClientSubClientSID(GenlibClientSubscription *head, const UpnpString *sid)
Return the client subscription from the client table that matches const Upnp_SID sid subscrition id v...
Definition: client_table.c:77
void RemoveClientSubClientSID(GenlibClientSubscription **head, const UpnpString *sid)
Remove the client subscription matching the subscritpion id represented by the const Upnp_SID sid par...
Definition: client_table.c:49
void freeClientSubList(GenlibClientSubscription *list)
Free the client subscription table.
Definition: client_table.c:38
GenlibClientSubscription * GetClientSubActualSID(GenlibClientSubscription *head, token *sid)
Returns the client subscription from the client subscription table that has the matching token *sid b...
Definition: client_table.c:95
TimerThread gTimerThread
Definition: upnpapi.c:128
struct s_UpnpString UpnpString
Type of the string objects inside libupnp.
Definition: UpnpString.h:33
Definition: TimerThread.h:69
Buffer used in parsinghttp messages, urls, etc. generally this simply holds a pointer into a larger a...
Definition: uri.h:113
Definition: GenlibClientSubscription.c:19