From bc010c2fd9c8c2e044ed4e2eef3023484f5dfa1e Mon Sep 17 00:00:00 2001 From: David Woodhouse Date: Tue, 22 Mar 2022 10:43:42 +0000 Subject: [PATCH] pretend to support external browser SAML Actually this might be easier than the internal one Signed-off-by: David Woodhouse --- auth.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/auth.c b/auth.c index ad07b2a5..5a88145b 100644 --- a/auth.c +++ b/auth.c @@ -809,6 +809,10 @@ static xmlDocPtr xmlpost_new_query(struct openconnect_info *vpninfo, const char if (!node) goto bad; + node = xmlNewTextChild(capabilities, NULL, XCAST("auth-method"), XCAST("single-sign-on-external-browser")); + if (!node) + goto bad; + *rootp = root; return doc; -- 2.50.1