Displaying 1 result from an estimated 1 matches for "dcd98b7102dd2f0e8b11d0f600bfb0c093".
2016 Oct 11
2
Compound Literal - xlc and gcc differences can be patched
...;
+static const struct http_auth_challenge_test digest[] = {
+ { .scheme = "Digest",
+ .data = NULL,
+ .params = (struct http_auth_param []) {
+ { "realm", "testrealm at host.com" },
+ { "qop", "auth,auth-int" },
+ { "nonce", "dcd98b7102dd2f0e8b11d0f600bfb0c093" },
+ { "opaque", "5ccc069c403ebaf9f0171e9517f40e41" },
+ { }
+ }
+ },{
+ .scheme = NULL
+ }
+};
+static const struct http_auth_challenge_test realms[] = {
+ { .scheme = "Newauth",
+ .data = NULL,
+ .params = (struct http_auth_param []) {
+ { "rea...