HomeSort by: relevance | last modified time | path
    Searched refs:hostlist (Results 1 - 13 of 13) 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
195 hostlist[0] = 0;
259 pcapint_strlcpy(hostlist, optarg, sizeof(hostlist));
461 char *hostlist_copy = strdup(hostlist);
1131 char *hostlist; member in struct:params_copy
1229 char *hostlist_copy = strdup(hostlist);
1251 params_copy->hostlist = hostlist_copy;
1302 char *hostlist_copy = strdup(hostlist);
1388 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/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/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 57 milliseconds