Revert "combined CSCOT URLs"

This reverts commit 6fea92a961.

The URL consolidation caused worker to no longer recognize either of the original URLs.
This led to "unexpected URL" errors and immediate worker termination.

The original change was intended to simplify URL configuration,
but it inadvertently broke functionality for both endpoints.

Signed-off-by: Grigory Trenin <grigory.trenin@gmail.com>
This commit is contained in:
Grigory Trenin
2025-11-04 18:24:09 -05:00
parent 284f2ecde5
commit 1d76699731
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),