mirror of
https://github.com/status-im/miniupnp.git
synced 2025-02-18 00:46:30 +00:00
miniupnpc-libevent: add event_cif_url/event_conn_url
This commit is contained in:
parent
215b357e55
commit
2455cc85b6
@ -390,8 +390,10 @@ static void upnpc_desc_received(struct evhttp_request * req, void * pvoid)
|
|||||||
printIGD(&igd);
|
printIGD(&igd);
|
||||||
#endif /* DEBUG */
|
#endif /* DEBUG */
|
||||||
d->control_conn_url = build_url_string(igd.urlbase, d->root_desc_location, igd.first.controlurl);
|
d->control_conn_url = build_url_string(igd.urlbase, d->root_desc_location, igd.first.controlurl);
|
||||||
|
d->event_conn_url = build_url_string(igd.urlbase, d->root_desc_location, igd.first.eventsuburl);
|
||||||
d->conn_service_type = strdup(igd.first.servicetype);
|
d->conn_service_type = strdup(igd.first.servicetype);
|
||||||
d->control_cif_url = build_url_string(igd.urlbase, d->root_desc_location, igd.CIF.controlurl);
|
d->control_cif_url = build_url_string(igd.urlbase, d->root_desc_location, igd.CIF.controlurl);
|
||||||
|
d->event_cif_url = build_url_string(igd.urlbase, d->root_desc_location, igd.CIF.eventsuburl);
|
||||||
d->cif_service_type = strdup(igd.CIF.servicetype);
|
d->cif_service_type = strdup(igd.CIF.servicetype);
|
||||||
debug_printf("control_conn_url='%s'\n (service_type='%s')\n",
|
debug_printf("control_conn_url='%s'\n (service_type='%s')\n",
|
||||||
d->control_conn_url, d->conn_service_type);
|
d->control_conn_url, d->conn_service_type);
|
||||||
|
@ -56,8 +56,10 @@ struct upnpc_device {
|
|||||||
char * root_desc_location;
|
char * root_desc_location;
|
||||||
struct evhttp_connection * desc_conn;
|
struct evhttp_connection * desc_conn;
|
||||||
char * control_cif_url;
|
char * control_cif_url;
|
||||||
|
char * event_cif_url;
|
||||||
char * cif_service_type;
|
char * cif_service_type;
|
||||||
char * control_conn_url;
|
char * control_conn_url;
|
||||||
|
char * event_conn_url;
|
||||||
char * conn_service_type;
|
char * conn_service_type;
|
||||||
struct evhttp_connection * soap_conn;
|
struct evhttp_connection * soap_conn;
|
||||||
struct NameValueParserData soap_response_data;
|
struct NameValueParserData soap_response_data;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user