HS 2.0: Fix SubscriptionUpdate UpdateMethod value in OSU server
This node was modified long time ago to include "SPP-" prefix. Fix the OSU server implementation to use the correct value. Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
This commit is contained in:
parent
55e5084d9e
commit
950cafafb2
1 changed files with 1 additions and 1 deletions
|
@ -1314,7 +1314,7 @@ static xml_node_t * build_pps(struct hs20_svc *ctx,
|
||||||
|
|
||||||
upd = xml_node_create(ctx->xml, c, NULL, "SubscriptionUpdate");
|
upd = xml_node_create(ctx->xml, c, NULL, "SubscriptionUpdate");
|
||||||
add_text_node(ctx, upd, "UpdateInterval", "4294967295");
|
add_text_node(ctx, upd, "UpdateInterval", "4294967295");
|
||||||
add_text_node(ctx, upd, "UpdateMethod", "ClientInitiated");
|
add_text_node(ctx, upd, "UpdateMethod", "SPP-ClientInitiated");
|
||||||
add_text_node(ctx, upd, "Restriction", "HomeSP");
|
add_text_node(ctx, upd, "Restriction", "HomeSP");
|
||||||
add_text_node_conf(ctx, realm, upd, "URI", "spp_http_auth_url");
|
add_text_node_conf(ctx, realm, upd, "URI", "spp_http_auth_url");
|
||||||
trust = xml_node_create(ctx->xml, upd, NULL, "TrustRoot");
|
trust = xml_node_create(ctx->xml, upd, NULL, "TrustRoot");
|
||||||
|
|
Loading…
Reference in a new issue