Home
last modified time | relevance | path

Searched refs:service (Results 1 – 25 of 49) sorted by relevance

12

/curl/docs/cmdline-opts/
H A Dservice-name.md4 Long: service-name
5 Help: SPNEGO service name
12 - proxy-service-name
14 - --service-name sockd/server $URL
17 # `--service-name`
19 Set the service name for SPNEGO.
H A Dproxy-service-name.md4 Long: proxy-service-name
6 Help: SPNEGO proxy service name
11 - service-name
15 - --proxy-service-name "shrubbery" -x proxy $URL
18 # `--proxy-service-name`
20 Set the service name for SPNEGO when doing proxy authentication.
H A Dsocks5-gssapi-service.md4 Long: socks5-gssapi-service
6 Help: SOCKS5 proxy service name for GSS-API
13 - --socks5-gssapi-service sockd --socks5 hostname:4096 $URL
16 # `--socks5-gssapi-service`
18 Set the service name for a socks server. Default is **rcmd/server-fqdn**.
H A Daws-sigv4.md29 The service argument is a string that points to a function provided by a cloud
30 (service-code) when the service name is omitted from the endpoint.
H A Dproxy-negotiate.md12 - proxy-service-name
H A Ddelegation.md27 service ticket, which is a matter of realm policy.
H A Dhaproxy-protocol.md22 This option is primarily useful when sending test requests to a service that
/curl/lib/vauth/
H A Dvauth.c57 char *Curl_auth_build_spn(const char *service, const char *host, in Curl_auth_build_spn() argument
64 spn = aprintf("%s/%s@%s", service, host, realm); in Curl_auth_build_spn()
66 spn = aprintf("%s/%s", service, host); in Curl_auth_build_spn()
68 spn = aprintf("%s@%s", service, realm); in Curl_auth_build_spn()
74 TCHAR *Curl_auth_build_spn(const char *service, const char *host, in Curl_auth_build_spn() argument
91 utf8_spn = aprintf("%s/%s", service, host); in Curl_auth_build_spn()
H A Dvauth.h65 char *Curl_auth_build_spn(const char *service, const char *host,
68 TCHAR *Curl_auth_build_spn(const char *service, const char *host,
102 const char *service,
151 const char *service,
193 const char *service,
221 const char *service,
H A Dspnego_gssapi.c85 const char *service, in Curl_auth_decode_spnego_message() argument
115 char *spn = Curl_auth_build_spn(service, NULL, host); in Curl_auth_decode_spnego_message()
H A Dkrb5_gssapi.c88 const char *service, in Curl_auth_create_gssapi_user_message() argument
108 char *spn = Curl_auth_build_spn(service, NULL, host); in Curl_auth_create_gssapi_user_message()
/curl/lib/
H A Dsocks_gssapi.c123 gss_buffer_desc service = GSS_C_EMPTY_BUFFER; in Curl_SOCKS5_gssapi_negotiate() local
147 service.length = serviceptr_length; in Curl_SOCKS5_gssapi_negotiate()
148 service.value = Curl_memdup(serviceptr, service.length); in Curl_SOCKS5_gssapi_negotiate()
149 if(!service.value) in Curl_SOCKS5_gssapi_negotiate()
152 gss_major_status = gss_import_name(&gss_minor_status, &service, in Curl_SOCKS5_gssapi_negotiate()
156 service.value = malloc(serviceptr_length + in Curl_SOCKS5_gssapi_negotiate()
158 if(!service.value) in Curl_SOCKS5_gssapi_negotiate()
160 service.length = serviceptr_length + in Curl_SOCKS5_gssapi_negotiate()
162 msnprintf(service.value, service.length + 1, "%s@%s", in Curl_SOCKS5_gssapi_negotiate()
165 gss_major_status = gss_import_name(&gss_minor_status, &service, in Curl_SOCKS5_gssapi_negotiate()
[all …]
H A Dhttp_negotiate.c50 const char *service; in Curl_input_negotiate() local
61 service = data->set.str[STRING_PROXY_SERVICE_NAME] ? in Curl_input_negotiate()
73 service = data->set.str[STRING_SERVICE_NAME] ? in Curl_input_negotiate()
125 result = Curl_auth_decode_spnego_message(data, userp, passwdp, service, in Curl_input_negotiate()
H A Dhttp_ntlm.c134 const char *service = NULL; in Curl_output_ntlm() local
151 service = data->set.str[STRING_PROXY_SERVICE_NAME] ? in Curl_output_ntlm()
165 service = data->set.str[STRING_SERVICE_NAME] ? in Curl_output_ntlm()
205 service, hostname, in Curl_output_ntlm()
H A Dhttp_aws_sigv4.c584 struct Curl_str service = { NULL, 0}; in Curl_output_aws_sigv4() local
653 Curl_str_until(&line, &service, MAX_SIGV4_LEN, ':')) { in Curl_output_aws_sigv4()
657 if(!service.len) { in Curl_output_aws_sigv4()
670 service.str = (char *)hostname; in Curl_output_aws_sigv4()
671 service.len = len; in Curl_output_aws_sigv4()
674 (int)service.len, service.str); in Curl_output_aws_sigv4()
707 ((service.len == 2) && strncasecompare(service.str, "s3", 2)); in Curl_output_aws_sigv4()
799 (int)service.len, service.str, in Curl_output_aws_sigv4()
838 HMAC_SHA256(sign1, sizeof(sign1), service.str, service.len, sign0); in Curl_output_aws_sigv4()
H A Dcurl_sasl.c356 const char *service = data->set.str[STRING_SERVICE_NAME] ? in Curl_sasl_start() local
358 sasl->params->service; in Curl_sasl_start()
394 service, in Curl_sasl_start()
455 service, in Curl_sasl_start()
543 const char *service = data->set.str[STRING_SERVICE_NAME] ? in Curl_sasl_continue() local
545 sasl->params->service; in Curl_sasl_continue()
609 service, &resp); in Curl_sasl_continue()
623 service, hostname, in Curl_sasl_continue()
644 service, in Curl_sasl_continue()
H A Dcurl_addrinfo.h97 curl_dbg_getaddrinfo(const char *hostname, const char *service,
H A Dkrb5.c206 const char *service = data->set.str[STRING_SERVICE_NAME] ? in krb5_auth() local
237 if(service == srv_host) { in krb5_auth()
252 stringp = aprintf("%s@%s", service, host); in krb5_auth()
263 if(service == srv_host) { in krb5_auth()
264 failf(data, "Error importing service name %s@%s", service, host); in krb5_auth()
267 service = srv_host; in krb5_auth()
371 if(ret == AUTH_OK || service == srv_host) in krb5_auth()
374 service = srv_host; in krb5_auth()
H A Dsocks_sspi.c91 const char *service = data->set.str[STRING_PROXY_SERVICE_NAME] ? in Curl_SOCKS5_gssapi_negotiate() local
93 const size_t service_length = strlen(service); in Curl_SOCKS5_gssapi_negotiate()
104 if(strchr(service, '/')) { in Curl_SOCKS5_gssapi_negotiate()
105 service_name = strdup(service); in Curl_SOCKS5_gssapi_negotiate()
116 service, conn->socks_proxy.host.name); in Curl_SOCKS5_gssapi_negotiate()
/curl/docs/libcurl/opts/
H A DCURLOPT_SOCKS5_GSSAPI_SERVICE.md17 CURLOPT_SOCKS5_GSSAPI_SERVICE - SOCKS5 proxy authentication service name
33 service. The default service name for a SOCKS5 server is *rcmd*. This option
H A DCURLOPT_PROXY_SERVICE_NAME.md18 CURLOPT_PROXY_SERVICE_NAME - proxy authentication service name
32 service. The default service name is **"HTTP"** for HTTP based proxies and
H A DCURLOPT_SERVICE_NAME.md23 CURLOPT_SERVICE_NAME - authentication service name
35 Pass a char pointer as parameter to a string holding the *name* of the service
37 service names are "ftp", "HTTP", "imap", "ldap", "pop" and "smtp". This option
H A DCURLOPT_AWS_SIGV4.md37 ## provider1[:provider2[:region[:service]]]
49 ## service section
92 "https://service.region.example.com/uri");
95 /* service and region can also be set in CURLOPT_AWS_SIGV4 */
98 "provider1:provider2:region:service");
/curl/tests/data/
H A Dtest207729 curl --fail --negotiate to unauthenticated service fails
/curl/docs/
H A Doptions-in-versions184 --proxy-service-name 7.43.0
217 --service-name 7.43.0
228 --socks5-gssapi-service 7.19.4

Completed in 46 milliseconds

12