Merge branch 'bugfix/cscot-url' into 'master'

Fix CSCOT URLs handling

See merge request openconnect/ocserv!456
This commit is contained in:
Dimitri Papadopoulos Orfanos
2025-11-21 21:04:02 +01:00
2 changed files with 3 additions and 1 deletions

1
NEWS
View File

@@ -2,6 +2,7 @@
- The bundled protobuf-c was updated to 1.5.1.
- Fixed issues with PAM authentication when combined with pam_sssd (#618)
- Enhanced the seccomp filters to address issue in testing (#627)
- Fixed "unexpected URL" errors for Cisco AnyConnect clients
* Version 1.3.0 (released 2024-05-05)
- Switch to https://github.com/nodejs/llhttp from http-parser.

View File

@@ -72,7 +72,8 @@ static const struct known_urls_st known_urls[] = {
LL("/1/VPNManifest.xml", get_string_handler, NULL),
LL("/1/binaries/update.txt", get_string_handler, NULL),
LL("/+CSCOT+/", get_string_handler, NULL),
LL("/+CSCOT+/translation-table", get_string_handler, NULL),
LL("/+CSCOT+/oem-customization", get_string_handler, NULL),
LL("/logout", get_empty_handler, NULL),
#endif
LL("/svc", get_svc_handler, post_svc_handler),