Searched refs:hostlist (Results 1 - 12 of 12) sorted by relevance

/freebsd-current/contrib/libpcap/rpcapd/
H A Dconfig_params.h51 extern char hostlist[MAX_HOST_LIST + 1]; //!< Keeps the list of the hosts that are allowed to connect to this server
H A Dfileconf.c81 hostlist[0] = 0;
394 eos = hostlist + strlen(hostlist);
395 if (eos != hostlist)
401 result = pcap_strlcat(hostlist, ",", sizeof(hostlist));
402 if (result >= sizeof(hostlist))
417 result = pcap_strlcat(hostlist, host, sizeof(hostlist));
418 if (result >= sizeof(hostlist))
[all...]
H A Drpcapd.c81 char hostlist[MAX_HOST_LIST + 1]; //!< Keeps the list of the hosts that are allowed to connect to this server variable
197 hostlist[0] = 0;
261 pcap_strlcpy(hostlist, optarg, sizeof(hostlist));
457 char *hostlist_copy = strdup(hostlist);
1125 char *hostlist; member in struct:params_copy
1223 char *hostlist_copy = strdup(hostlist);
1245 params_copy->hostlist = hostlist_copy;
1296 char *hostlist_copy = strdup(hostlist);
1380 char *hostlist_copy = strdup(hostlist);
[all...]
/freebsd-current/crypto/heimdal/lib/krb5/
H A Dkrbhst.c468 char **hostlist; local
469 hostlist = krb5_config_get_strings(context, NULL,
473 kd->realm, hostlist ? "" : " not");
475 if(hostlist == NULL)
478 for(i = 0; hostlist && hostlist[i] != NULL; i++)
479 append_host_string(context, kd, hostlist[i], kd->def_port, kd->port);
481 krb5_config_free_strings(hostlist);
1024 unsigned int type, char ***hostlist)
1043 *hostlist
1023 gethostlist(krb5_context context, const char *realm, unsigned int type, char ***hostlist) argument
1069 krb5_get_krb_admin_hst(krb5_context context, const krb5_realm *realm, char ***hostlist) argument
1081 krb5_get_krb_changepw_hst(krb5_context context, const krb5_realm *realm, char ***hostlist) argument
1093 krb5_get_krb524hst(krb5_context context, const krb5_realm *realm, char ***hostlist) argument
1106 krb5_get_krbhst(krb5_context context, const krb5_realm *realm, char ***hostlist) argument
1118 krb5_free_krbhst(krb5_context context, char **hostlist) argument
[all...]
/freebsd-current/usr.sbin/yppush/
H A Dyppush_main.c497 struct hostlist { struct
499 struct hostlist *next;
501 struct hostlist *yppush_hostlist = NULL;
502 struct hostlist *tmp;
518 if ((tmp = (struct hostlist *)malloc(sizeof(struct hostlist))) == NULL) {
/freebsd-current/usr.sbin/mountd/
H A Dmountd.c95 struct hostlist *dp_hosts; /* List of hosts this dir exported to */
172 struct hostlist { struct
175 struct hostlist *ht_next;
223 static void free_host(struct hostlist *);
236 static struct hostlist *get_ht(void);
1465 struct hostlist *hp;
1510 if (gotalldir && hp == (struct hostlist *)NULL) {
2525 dp->dp_hosts = (struct hostlist *)NULL;
2541 struct hostlist *hp;
2595 struct hostlist *h
[all...]
/freebsd-current/contrib/libpcap/
H A Dsockutils.h155 int sock_check_hostlist(char *hostlist, const char *sep, struct sockaddr_storage *from, char *errbuf, int errbuflen);
H A Dsockutils.c1711 * \param hostlist: pointer to a string that contains the list of the allowed host.
1731 int sock_check_hostlist(char *hostlist, const char *sep, struct sockaddr_storage *from, char *errbuf, int errbuflen) argument
1734 if ((hostlist) && (hostlist[0]))
1736 char *token; /* temp, needed to separate items into the hostlist */
1746 temphostlist = strdup(hostlist);
1840 /* No hostlist, so we have to return 'empty list' */
H A Dpcap-rpcap.c2920 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) argument
3023 if (sock_check_hostlist((char *)hostlist, RPCAP_HOSTLIST_SEP, &from, errbuf, PCAP_ERRBUF_SIZE) < 0)
3113 SOCKET pcap_remoteact_accept(const char *address, const char *port, const char *hostlist, char *connectinghost, struct pcap_rmtauth *auth, char *errbuf) argument
3115 return pcap_remoteact_accept_ex(address, port, hostlist, connectinghost, auth, 0, errbuf);
3255 int pcap_remoteact_list(char *hostlist, char sep, int size, char *errbuf) argument
3264 *hostlist = 0;
3290 pcap_strlcat(hostlist, hoststr, PCAP_ERRBUF_SIZE);
3291 hostlist[len - 1] = sep;
3292 hostlist[len] = 0;
/freebsd-current/contrib/libpcap/pcap/
H A Dpcap.h1200 const char *hostlist, char *connectinghost,
1205 const char *hostlist, char *connectinghost,
1209 PCAP_API int pcap_remoteact_list(char *hostlist, char sep, int size,
/freebsd-current/crypto/heimdal/lib/kadm5/
H A Dinit_c.c95 char **hostlist; local
97 ret = krb5_get_krb_admin_hst (context, &(*ctx)->realm, &hostlist);
103 (*ctx)->admin_server = strdup(*hostlist);
104 krb5_free_krbhst (context, hostlist);
/freebsd-current/contrib/sendmail/src/
H A Dmap.c5689 char *hostlist, *host; local
5723 hostlist = newstr(pmap->ph_servers);
5724 for (host = strtok(hostlist, " ");
5756 sm_free(hostlist); /* XXX */
5780 sm_free(hostlist); /* XXX */

Completed in 629 milliseconds