/bind-9.6-ESV-R11/lib/isc/include/isc/ |
H A D | md5.h | 7 * copyright notice and this permission notice appear in all copies. 24 * written by Colin Plumb in 1993, no copyright is claimed. 25 * This code is in the public domain; do with it what you wish. 40 * Still in the public domain. 54 isc_uint32_t in[16]; member in struct:__anon169
|
H A D | netaddr.h | 7 * copyright notice and this permission notice appear in all copies. 39 struct in_addr in; member in union:isc_netaddr::__anon170 68 * Convert a netmask in 's' into a prefix length in '*lenp'. 69 * The mask should consist of zero or more '1' bits in the most
|
/bind-9.6-ESV-R11/lib/isc/ |
H A D | iterated_hash.c | 6 * copyright notice and this permission notice appear in all copies. 30 const unsigned char *in, int inlength) 40 isc_sha1_update(&ctx, in, inlength); 43 in = out; 27 isc_iterated_hash(unsigned char out[ISC_SHA1_DIGESTLENGTH], unsigned int hashalg, int iterations, const unsigned char *salt, int saltlength, const unsigned char *in, int inlength) argument
|
H A D | md5.c | 7 * copyright notice and this permission notice appear in all copies. 23 * written by Colin Plumb in 1993, no copyright is claimed. 24 * This code is in the public domain; do with it what you wish. 87 /*! This is the central step in the MD5 algorithm. */ 88 #define MD5STEP(f,w,x,y,z,in,s) \ 89 (w += f(x,y,z) + in, w = (w<<s | w>>(32-s)) + x) 97 transform(isc_uint32_t buf[4], isc_uint32_t const in[16]) { argument 105 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7); 106 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12); 107 MD5STEP(F1, c, d, a, b, in[ [all...] |
/bind-9.6-ESV-R11/bin/tests/net/ |
H A D | netaddr_multicast.c | 7 * copyright notice and this permission notice appear in all copies. 56 struct in_addr in; local 61 r = inet_pton(AF_INET, addr->addr, (unsigned char *)&in); 64 isc_netaddr_fromin(na, &in);
|
/bind-9.6-ESV-R11/lib/isc/tests/ |
H A D | sockaddr_test.c | 6 * copyright notice and this permission notice appear in all copies. 43 struct in_addr in; local 53 in.s_addr = inet_addr("127.0.0.1"); 54 isc_sockaddr_fromin(&addr, &in, 1);
|
/bind-9.6-ESV-R11/lib/dns/tests/ |
H A D | zonemgr_test.c | 6 * copyright notice and this permission notice appear in all copies. 156 struct in_addr in; local 181 in.s_addr = inet_addr("10.53.0.1"); 182 isc_sockaddr_fromin(&addr1, &in, 2112); 183 in.s_addr = inet_addr("10.53.0.2"); 184 isc_sockaddr_fromin(&addr2, &in, 5150); 195 in.s_addr = inet_addr("10.53.0.3"); 196 isc_sockaddr_fromin(&addr2, &in, 5150); 209 in.s_addr = inet_addr("10.53.0.2"); 210 isc_sockaddr_fromin(&addr2, &in, 515 [all...] |
/bind-9.6-ESV-R11/contrib/dlz/drivers/ |
H A D | dlz_bdb_driver.c | 6 * above copyright notice and this permission notice appear in all 23 * above copyright notice and this permission notice appear in all 41 * copyright notice and this permission notice appear in all copies. 128 bdb_parse_data(char *in, parsed_data_t *pd) { argument 131 char *tmp = in; 271 /* free any memory duplicate string in the key field */ 348 /* free any memory duplicate string in the key field */ 437 /* free any memory duplicate string in the key field */ 599 "BDB could not open %s database in %s. "
|
H A D | dlz_bdbhpt_driver.c | 6 * above copyright notice and this permission notice appear in all 23 * above copyright notice and this permission notice appear in all 41 * copyright notice and this permission notice appear in all copies. 118 * Reverses a string in place. 145 bdbhpt_parse_data(char *in, bdbhpt_parsed_data_t *pd) { argument 148 char *tmp = in; 290 /* free any memory duplicate string in the key field */ 319 * all the different hosts in a zone. Then use the zone & host 320 * together to lookup the data in the dns_data database. YES - 523 /* free any memory duplicate string in th [all...] |
H A D | dlz_filesystem_driver.c | 6 * above copyright notice and this permission notice appear in all 23 * above copyright notice and this permission notice appear in all 41 * copyright notice and this permission notice appear in all copies. 115 /* check that only allowed characters are in the domain name */ 128 /* only 1 dot in ok location, continue at next char */ 146 * addresses. Not dangerous in domain names, as not a 153 * '@' needs to be allowed for in zone data. Not 154 * dangerous in domain names, as not a special char. 170 create_path_helper(char *out, const char *in, config_data_t *cd) { argument 175 tmpString = isc_mem_strdup(ns_g_mctx, in); [all...] |
/bind-9.6-ESV-R11/bin/rndc/ |
H A D | rndc.c | 7 * copyright notice and this permission notice appear in all copies. 224 fatal("no data section in response"); 682 struct in_addr in; local 711 &in) == 1) { 712 isc_sockaddr_fromin(&local4, &in, 0); 809 * similar to what the user might enter in interactive mode
|
/bind-9.6-ESV-R11/bin/tests/hashes/ |
H A D | t_hashes.c | 6 * copyright notice and this permission notice appear in all copies. 277 ck(const char *name, const IN *in, const OUT *out) argument 284 str_name = in->name != NULL ? in->name : (const char *)in->str; 315 IN *in, OUT *out) 324 update(&ctx, in->str, in->str_len); 327 ck(hname, in, out); 336 t_sha224(IN *in, OU argument 314 t_hash(const char *hname, HASH_INIT init, UPDATE update, FINAL final, IN *in, OUT *out) argument 351 t_hashes(IN *in, OUT *out_sha1, OUT *out_sha224, OUT *out_md5) argument 366 t_md5hmac(IN *in, OUT *out) argument 380 t_hmac(const char *hname, HMAC_INIT init, UPDATE update, SIGN sign, IN *in, OUT *out) argument 403 t_hmacs(IN *in, OUT *out_sha1, OUT *out_sha224, OUT *out_sha256, OUT *out_sha384, OUT *out_sha512) argument [all...] |
/bind-9.6-ESV-R11/contrib/sdb/ldap/ |
H A D | ldapdb.c | 8 * copyright notice and this permission notice appear in all copies. 388 unhex(char *in) argument 391 char *p, *s = in; 406 return in;
|
/bind-9.6-ESV-R11/unit/atf-src/atf-c/detail/ |
H A D | fs_test.c | 7 * Redistribution and use in source and binary forms, with or without 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 103 const char *in; member in struct:test 130 for (t = &tests[0]; t->in != NULL; t++) { 133 printf("Input : >%s<\n", t->in); 136 RE(atf_fs_path_init_fmt(&p, "%s", t->in)); 175 const char *in; member in struct:test 188 for (t = &tests[0]; t->in != NULL; t++) { 191 printf("Input : %s\n", t->in); 215 const char *in; member in struct:test 256 const char *in; member in struct:test 294 const char *in; member in struct:test 333 const char *in; member in struct:test [all...] |
/bind-9.6-ESV-R11/bin/dig/ |
H A D | dighost.c | 7 * copyright notice and this permission notice appear in all copies. 27 * functions in most applications. 290 * the child name is used for delegation (NS DS responses in AUTHORITY section) 336 * Apply and clear locks at the event level in global task. 433 reverse_octets(const char *in, char **p, char *end) { argument 434 char *dot = strchr(in, '.'); 444 len = dot - in; 446 len = strlen(in); 448 return (append(in, len, p, end)); 480 * in [all...] |