Home
last modified time | relevance | path

Searched refs:scheme (Results 1 – 25 of 107) sorted by relevance

12345

/minix3/external/bsd/bind/dist/contrib/idn/idnkit-1.0-src/lib/
H A Dchecker.c152 check_scheme_t **scheme; in idn_checker_initialize() local
166 for (scheme = (check_scheme_t **)standard_check_schemes; in idn_checker_initialize()
167 *scheme != NULL; scheme++) { in idn_checker_initialize()
168 r = idn__strhash_put(scheme_hash, (*scheme)->prefix, *scheme); in idn_checker_initialize()
260 check_scheme_t *scheme; in idn_checker_add() local
297 if (idn__strhash_get(scheme_hash, scheme_prefix, (void **)&scheme) in idn_checker_add()
304 if (scheme_parameter == NULL && scheme->parameter != NULL) in idn_checker_add()
305 scheme_parameter = scheme->parameter; in idn_checker_add()
325 r = scheme->create(scheme_parameter, &scheme_context); in idn_checker_add()
329 memcpy(ctx->schemes + ctx->nschemes, scheme, sizeof(check_scheme_t)); in idn_checker_add()
[all …]
H A Dmapper.c124 map_scheme_t **scheme; in idn_mapper_initialize() local
137 for (scheme = (map_scheme_t **)standard_map_schemes; in idn_mapper_initialize()
138 *scheme != NULL; scheme++) { in idn_mapper_initialize()
139 r = idn__strhash_put(scheme_hash, (*scheme)->prefix, *scheme); in idn_mapper_initialize()
230 map_scheme_t *scheme; in idn_mapper_add() local
269 if (idn__strhash_get(scheme_hash, scheme_prefix, (void **)&scheme) in idn_mapper_add()
277 if (scheme->parameter != NULL) in idn_mapper_add()
278 scheme_parameter = scheme->parameter; in idn_mapper_add()
280 scheme_parameter = scheme->prefix; in idn_mapper_add()
301 r = scheme->create(scheme_parameter, &scheme_context); in idn_mapper_add()
[all …]
H A Dnormalizer.c196 normalize_scheme_t *scheme; in idn_normalizer_add() local
211 scheme = v; in idn_normalizer_add()
220 ctx->schemes[ctx->nschemes++] = scheme; in idn_normalizer_add()
350 normalize_scheme_t *scheme; in idn_normalizer_register() local
358 scheme = malloc(sizeof(*scheme) + strlen(scheme_name) + 1); in idn_normalizer_register()
359 if (scheme == NULL) { in idn_normalizer_register()
363 scheme->name = (char *)(scheme + 1); in idn_normalizer_register()
364 (void)strcpy(scheme->name, scheme_name); in idn_normalizer_register()
365 scheme->proc = proc; in idn_normalizer_register()
367 r = idn__strhash_put(scheme_hash, scheme_name, scheme); in idn_normalizer_register()
H A Didn.conf.sample.in29 # RFC3491 -- name preparation scheme described in the
45 # local-map <tld> <scheme> ...
48 # by <scheme> is performed on the name. Otherwise no mapping are
/minix3/external/bsd/fetch/dist/libfetch/
H A Dfetch.c88 if (strcasecmp(URL->scheme, SCHEME_FILE) == 0) in fetchXGet()
90 else if (strcasecmp(URL->scheme, SCHEME_FTP) == 0) in fetchXGet()
92 else if (strcasecmp(URL->scheme, SCHEME_HTTP) == 0) in fetchXGet()
94 else if (strcasecmp(URL->scheme, SCHEME_HTTPS) == 0) in fetchXGet()
118 if (strcasecmp(URL->scheme, SCHEME_FILE) == 0) in fetchPut()
120 else if (strcasecmp(URL->scheme, SCHEME_FTP) == 0) in fetchPut()
122 else if (strcasecmp(URL->scheme, SCHEME_HTTP) == 0) in fetchPut()
124 else if (strcasecmp(URL->scheme, SCHEME_HTTPS) == 0) in fetchPut()
142 if (strcasecmp(URL->scheme, SCHEME_FILE) == 0) in fetchStat()
144 else if (strcasecmp(URL->scheme, SCHEME_FTP) == 0) in fetchStat()
[all …]
H A Dhttp.c733 if (purl && strcasecmp(URL->scheme, SCHEME_HTTPS) != 0) { in http_connect()
735 } else if (strcasecmp(URL->scheme, SCHEME_FTP) == 0) { in http_connect()
749 if (strcasecmp(URL->scheme, SCHEME_HTTPS) == 0 && in http_connect()
782 if (!*purl->scheme) in http_get_proxy()
783 strcpy(purl->scheme, SCHEME_HTTP); in http_get_proxy()
785 purl->port = fetch_default_proxy_port(purl->scheme); in http_get_proxy()
786 if (strcasecmp(purl->scheme, SCHEME_HTTP) == 0) in http_get_proxy()
865 url->port = fetch_default_port(url->scheme); in http_request()
868 if (purl == NULL && strcmp(url->scheme, SCHEME_FTP) == 0) { in http_request()
886 if (url->port != fetch_default_port(url->scheme)) { in http_request()
[all …]
H A Dcommon.c196 fetch_default_port(const char *scheme) in fetch_default_port() argument
200 if ((se = getservbyname(scheme, "tcp")) != NULL) in fetch_default_port()
202 if (strcasecmp(scheme, SCHEME_FTP) == 0) in fetch_default_port()
204 if (strcasecmp(scheme, SCHEME_HTTP) == 0) in fetch_default_port()
213 fetch_default_proxy_port(const char *scheme) in fetch_default_proxy_port() argument
215 if (strcasecmp(scheme, SCHEME_FTP) == 0) in fetch_default_proxy_port()
217 if (strcasecmp(scheme, SCHEME_HTTP) == 0) in fetch_default_proxy_port()
373 strcmp(conn->cache_url->scheme, url->scheme) == 0 && in fetch_cache_get()
772 strcpy(tmp->scheme, base->scheme); in fetch_add_entry()
H A Dftp.c1001 if (purl && url->port == fetch_default_port(url->scheme)) in ftp_authenticate()
1060 purl->port = fetch_default_port(purl->scheme); in ftp_connect()
1066 url->port = fetch_default_port(url->scheme); in ftp_connect()
1124 if (!*purl->scheme) { in ftp_get_proxy()
1126 strcpy(purl->scheme, SCHEME_FTP); in ftp_get_proxy()
1128 strcpy(purl->scheme, SCHEME_HTTP); in ftp_get_proxy()
1131 purl->port = fetch_default_proxy_port(purl->scheme); in ftp_get_proxy()
1132 if (strcasecmp(purl->scheme, SCHEME_FTP) == 0 || in ftp_get_proxy()
1133 strcasecmp(purl->scheme, SCHEME_HTTP) == 0) in ftp_get_proxy()
1154 if (purl && strcasecmp(purl->scheme, SCHEME_HTTP) == 0) { in ftp_request()
H A Dfetch.h49 char scheme[URL_SCHEMELEN + 1]; member
/minix3/external/bsd/llvm/dist/clang/test/Rewriter/
H A Drewrite-property-set-cfstring.mm11 @property (retain) NSString *scheme; property
16 @synthesize scheme=_scheme;
19 discoveryInfo.scheme = @"https";
H A Dproperty-dot-syntax.mm31 @property (retain) NSString *scheme; property
43 b.scheme = _schemeName; // error because of this line
/minix3/crypto/external/bsd/openssl/dist/crypto/asn1/
H A Dp5_pbev2.c94 X509_ALGOR *scheme = NULL, *kalg = NULL, *ret = NULL; variable
113 scheme = pbe2->encryption;
115 scheme->algorithm = obj;
116 if (!(scheme->parameter = ASN1_TYPE_new()))
132 if (EVP_CIPHER_param_to_asn1(&ctx, scheme->parameter) < 0) {
/minix3/crypto/external/bsd/netpgp/dist/src/libpaa/
H A DPubKeyAccessAuthScheme.txt33 scheme provided by RFC 2617 only describes authentication by way of
36 The PubKey Access Authentication scheme aims to enhance security on the
73 scheme provided by RFC 2617 only describes authentication by way of
79 Access Authentication scheme allows an HTTP server to authenticate clients using
87 scheme is based on a simple challenge-response paradigm. The PubKey scheme
106 framework defined above, which for the digest scheme is utilized as
258 The PubKey.v1 authentication scheme may also be used for authenticating
285 The challenge generation scheme described in section A.1 includes a
299 PubKey.v1 scheme does not attempt to implement any form of server
312 authentication scheme over, for instance, the Digest scheme.
[all …]
/minix3/external/bsd/llvm/dist/llvm/docs/CommandGuide/
H A Dllvm-bcanalyzer.rst208 encoding scheme.
213 scheme.
218 the Variable Bit Rate encoding scheme.
224 scheme.
228 The total number of bytes saved by using the Variable Bit Rate encoding scheme.
288 integers that use the Variable Bit Rate encoding scheme.
294 Bit Rate encoding scheme.
299 Rate encoding scheme. The percentage is relative to # of VBR Expanded Bytes.
/minix3/minix/commands/fetch/
H A Dfetch.c376 URL->scheme, URL->host, URL->port); in query_auth()
438 if (!*url->scheme) { in fetch()
440 strcpy(url->scheme, SCHEME_FILE); in fetch()
442 strcpy(url->scheme, SCHEME_FTP); in fetch()
444 strcpy(url->scheme, SCHEME_HTTP); in fetch()
471 if (strcmp(url->scheme, SCHEME_FTP) == 0) { in fetch()
480 if (strcmp(url->scheme, SCHEME_HTTP) == 0) { in fetch()
576 if (l_flag && strcmp(url->scheme, "file") == 0 && !o_stdout) { in fetch()
/minix3/external/bsd/file/dist/magic/magdir/
H A Dlisp47 #.com and .bin for MIT scheme
48 0 string \372\372\372\372 MIT scheme (library?)
/minix3/external/bsd/bind/dist/contrib/query-loc-0.4.0/
H A DREADME6 You can find examples of networks wchich implement this scheme
/minix3/external/bsd/libevent/dist/
H A Dhttp.c1533 const char *scheme; in evhttp_parse_request_line() local
1587 scheme = evhttp_uri_get_scheme(req->uri_elems); in evhttp_parse_request_line()
1589 if (scheme && (!evutil_ascii_strcasecmp(scheme, "http") || in evhttp_parse_request_line()
1590 !evutil_ascii_strcasecmp(scheme, "https")) && in evhttp_parse_request_line()
3918 char *scheme; /* scheme; e.g http, ftp etc */ member
4240 uri->scheme = mm_strdup(readp); in evhttp_uri_parse_with_flags()
4241 if (uri->scheme == NULL) { in evhttp_uri_parse_with_flags()
4296 if (! uri->scheme && !path_matches_noscheme(path)) in evhttp_uri_parse_with_flags()
4340 _URI_FREE_STR(scheme); in evhttp_uri_free()
4367 if (uri->scheme) { in evhttp_uri_join()
[all …]
/minix3/crypto/external/bsd/openssl/dist/crypto/dso/
H A DREADME11 There is now a callback scheme in place where filename conversion can
/minix3/crypto/external/bsd/netpgp/dist/ref/
H A Drfc2437.txt137 an OAEP-based [2] encryption scheme along with the method found
138 in PKCS #1 v1.5. Section 8 defines a signature scheme with
404 intended to provide security apart from a scheme.
603 A scheme combines cryptographic primitives and other techniques to
604 achieve a particular security goal. Two types of scheme are specified
611 in addition to the scheme operations, an application will typically
613 and private keys for a scheme operation. The specific additional
624 specifications of scheme operations assume that certain conditions
635 An encryption scheme consists of an encryption operation and a
641 An encryption scheme can be employed in a variety of applications. A
[all …]
/minix3/crypto/external/bsd/netpgp/dist/
H A DTODO23 content_ naming scheme
45 real naming scheme
/minix3/common/dist/zlib/contrib/iostream3/
H A DREADME18 library naming scheme. The new version of gzifstream/gzofstream/gzfilebuf differs
/minix3/external/public-domain/tz/dist/
H A Dsystemv6 # using the System V "TZ" scheme (half-hour offset), or anything outside
/minix3/usr.bin/ftp/
H A Dfetch.c159 const char *cp, *scheme, *errormsg; in auth_url() local
170 scheme = "Basic"; /* only support Basic authentication */ in auth_url()
175 if (! match_token(&cp, scheme)) { in auth_url()
231 rlen = strlen(scheme) + 1 + (clen + 2) * 4 / 3 + 1; in auth_url()
233 (void)strlcpy(*response, scheme, rlen); in auth_url()
/minix3/external/bsd/bind/dist/contrib/idn/idnkit-1.0-src/
H A DNEWS167 of whole scheme. If there is no user configuration file, then it
172 it sets normal configurations (the latest nameprep scheme it

12345