Home
last modified time | relevance | path

Searched refs:soap (Results 1 – 3 of 3) sorted by relevance

/hostap-latest/hs20/server/
Dhs20_spp_server.c68 xml_node_t *soap, *spp, *resp; in process() local
105 soap = xml_node_from_buf(ctx->xml, post); in process()
106 if (soap == NULL) { in process()
110 debug_dump_node(ctx, "Received SOAP message", soap); in process()
111 spp = soap_get_body(ctx->xml, soap); in process()
114 xml_node_free(ctx->xml, soap); in process()
120 xml_node_free(ctx->xml, soap); in process()
130 soap = soap_build_envelope(ctx->xml, resp); in process()
131 if (soap == NULL) { in process()
135 str = xml_node_to_str(ctx->xml, soap); in process()
[all …]
/hostap-latest/src/utils/
Dxml-utils.c459 xml_node_t * soap_get_body(struct xml_node_ctx *ctx, xml_node_t *soap) in soap_get_body() argument
463 body = get_node_uri(ctx, soap, "Envelope/Body"); in soap_get_body()
Dxml-utils.h95 xml_node_t * soap_get_body(struct xml_node_ctx *ctx, xml_node_t *soap);