HomeSort by: relevance | last modified time | path
    Searched refs:hostlist (Results 1 - 15 of 15) sorted by relevancy

  /src/external/bsd/libpcap/dist/rpcapd/
config_params.h 51 extern char hostlist[MAX_HOST_LIST + 1]; //!< Keeps the list of the hosts that are allowed to connect to this server
fileconf.c 79 hostlist[0] = 0;
392 eos = hostlist + strlen(hostlist);
393 if (eos != hostlist)
399 result = pcapint_strlcat(hostlist, ",", sizeof(hostlist));
400 if (result >= sizeof(hostlist))
415 result = pcapint_strlcat(hostlist, host, sizeof(hostlist));
416 if (result >= sizeof(hostlist))
    [all...]
rpcapd.c 79 char hostlist[MAX_HOST_LIST + 1]; //!< Keeps the list of the hosts that are allowed to connect to this server variable
198 hostlist[0] = 0;
262 pcapint_strlcpy(hostlist, optarg, sizeof(hostlist));
464 char *hostlist_copy = strdup(hostlist);
1133 char *hostlist; member in struct:params_copy
1231 char *hostlist_copy = strdup(hostlist);
1253 params_copy->hostlist = hostlist_copy;
1304 char *hostlist_copy = strdup(hostlist);
1390 char *hostlist_copy = strdup(hostlist);
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/back-dnssrv/
referral.c 45 char *hostlist = NULL; local
80 i = ldap_domain2hostlist( domain, &hostlist );
90 hosts = ldap_str2charray( hostlist, " " );
130 if( hostlist != NULL ) ch_free( hostlist );
search.c 46 char *hostlist = NULL; local
90 if( ( rc = ldap_domain2hostlist( domain, &hostlist ) ) ) {
98 hosts = ldap_str2charray( hostlist, " " );
240 if( hostlist != NULL ) ch_free( hostlist );
  /src/crypto/external/bsd/heimdal/dist/lib/krb5/
krbhst.c 473 char **hostlist; local
474 hostlist = krb5_config_get_strings(context, NULL,
478 kd->realm, hostlist ? "" : " not");
480 if(hostlist == NULL)
483 for(i = 0; hostlist && hostlist[i] != NULL; i++)
484 append_host_string(context, kd, hostlist[i], kd->def_port, kd->port);
486 krb5_config_free_strings(hostlist);
1077 unsigned int type, char ***hostlist)
1096 *hostlist = calloc(nhost + 1, sizeof(**hostlist))
    [all...]
  /src/external/bsd/openldap/dist/libraries/libldap/
dnssrv.c 259 char *hostlist = NULL; local
390 hostlist = (char *) LDAP_REALLOC(hostlist, cur+buflen+1);
391 if (hostlist == NULL) {
396 hostlist[cur++]=' ';
398 cur += sprintf(&hostlist[cur], "%s:%hu", hostent_head[i].hostname, hostent_head[i].port);
402 if (hostlist == NULL) {
409 *list = hostlist;
420 if (rc != LDAP_SUCCESS && hostlist != NULL) {
421 LDAP_FREE(hostlist);
    [all...]
  /src/external/bsd/libpcap/dist/
sockutils.h 156 int sock_check_hostlist(const char *hostlist, const char *sep, struct sockaddr_storage *from, char *errbuf, int errbuflen);
sockutils.c 1714 * \param hostlist: pointer to a string that contains the list of the allowed host.
1734 int sock_check_hostlist(const char *hostlist, const char *sep, struct sockaddr_storage *from, char *errbuf, int errbuflen)
1737 if ((hostlist) && (hostlist[0]))
1739 char *token; /* temp, needed to separate items into the hostlist */
1749 temphostlist = strdup(hostlist);
1843 /* No hostlist, so we have to return 'empty list' */
pcap-rpcap.c 2924 PCAP_SOCKET pcap_remoteact_accept_ex(const char *address, const char *port, const char *hostlist, char *connectinghost, struct pcap_rmtauth *auth, int uses_ssl, char *errbuf)
3027 if (sock_check_hostlist(hostlist, RPCAP_HOSTLIST_SEP, &from, errbuf, PCAP_ERRBUF_SIZE) < 0)
3117 PCAP_SOCKET pcap_remoteact_accept(const char *address, const char *port, const char *hostlist, char *connectinghost, struct pcap_rmtauth *auth, char *errbuf)
3119 return pcap_remoteact_accept_ex(address, port, hostlist, connectinghost, auth, 0, errbuf);
3258 int pcap_remoteact_list(char *hostlist, char sep, int size, char *errbuf)
3267 *hostlist = 0;
3293 pcapint_strlcat(hostlist, hoststr, PCAP_ERRBUF_SIZE);
3294 hostlist[len - 1] = sep;
3295 hostlist[len] = 0;
  /src/external/bsd/libpcap/dist/pcap/
pcap.h 1252 const char *hostlist, char *connectinghost,
1257 const char *hostlist, char *connectinghost,
1261 PCAP_API int pcap_remoteact_list(char *hostlist, char sep, int size,
  /src/crypto/external/bsd/heimdal/dist/lib/kadm5/
init_c.c 113 char **hostlist; local
115 ret = krb5_get_krb_admin_hst (context, &(*ctx)->realm, &hostlist);
121 (*ctx)->admin_server = strdup(*hostlist);
122 krb5_free_krbhst (context, hostlist);
  /src/usr.sbin/mountd/
mountd.c 125 struct hostlist *dp_hosts; /* List of hosts this dir exported to */
161 struct hostlist { struct
164 struct hostlist *ht_next;
200 static void free_host(struct hostlist *);
204 static struct hostlist *get_ht(void);
863 struct hostlist *hp;
1406 struct hostlist *hp;
1454 struct hostlist *hp;
1664 struct hostlist *hp;
1931 free_host(struct hostlist *hp
    [all...]
  /src/external/bsd/openldap/dist/clients/tools/
common.c 1235 *hostlist = NULL, local
1250 rc = ldap_domain2hostlist( domain, &hostlist );
1254 "domain=%s into a hostlist\n",
1259 hosts = ldap_str2charray( hostlist, " " );
1263 "hostlist=\"%s\"\n",
1264 hostlist );
1301 ber_memfree( hostlist );
  /src/external/bsd/openldap/dist/include/
ldap.h 1115 char** hostlist ));

Completed in 37 milliseconds