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

/freebsd-11-stable/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.c72 hostlist[0] = 0;
385 eos = hostlist + strlen(hostlist);
386 if (eos != hostlist)
392 result = pcap_strlcat(hostlist, ",", sizeof(hostlist));
393 if (result >= sizeof(hostlist))
408 result = pcap_strlcat(hostlist, host, sizeof(hostlist));
409 if (result >= sizeof(hostlist))
[all...]
H A Drpcapd.c75 char hostlist[MAX_HOST_LIST + 1]; //!< Keeps the list of the hosts that are allowed to connect to this server variable
178 hostlist[0] = 0;
234 strncpy(hostlist, optarg, sizeof(hostlist));
395 char *hostlist_copy = strdup(hostlist);
1063 char *hostlist; member in struct:params_copy
1159 char *hostlist_copy = strdup(hostlist);
1181 params_copy->hostlist = hostlist_copy;
1232 char *hostlist_copy = strdup(hostlist);
1314 char *hostlist_copy = strdup(hostlist);
[all...]
/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A Dkrbhst.c462 char **hostlist; local
463 hostlist = krb5_config_get_strings(context, NULL,
467 kd->realm, hostlist ? "" : " not");
469 if(hostlist == NULL)
472 for(i = 0; hostlist && hostlist[i] != NULL; i++)
473 append_host_string(context, kd, hostlist[i], kd->def_port, kd->port);
475 krb5_config_free_strings(hostlist);
1018 unsigned int type, char ***hostlist)
1037 *hostlist
1017 gethostlist(krb5_context context, const char *realm, unsigned int type, char ***hostlist) argument
1063 krb5_get_krb_admin_hst(krb5_context context, const krb5_realm *realm, char ***hostlist) argument
1075 krb5_get_krb_changepw_hst(krb5_context context, const krb5_realm *realm, char ***hostlist) argument
1087 krb5_get_krb524hst(krb5_context context, const krb5_realm *realm, char ***hostlist) argument
1100 krb5_get_krbhst(krb5_context context, const krb5_realm *realm, char ***hostlist) argument
1112 krb5_free_krbhst(krb5_context context, char **hostlist) argument
[all...]
/freebsd-11-stable/usr.sbin/yppush/
H A Dyppush_main.c498 struct hostlist { struct
500 struct hostlist *next;
502 struct hostlist *yppush_hostlist = NULL;
503 struct hostlist *tmp;
519 if ((tmp = (struct hostlist *)malloc(sizeof(struct hostlist))) == NULL) {
/freebsd-11-stable/contrib/libpcap/
H A Dsockutils.h142 int sock_check_hostlist(char *hostlist, const char *sep, struct sockaddr_storage *from, char *errbuf, int errbuflen);
H A Dsockutils.c1238 * \param hostlist: pointer to a string that contains the list of the allowed host.
1258 int sock_check_hostlist(char *hostlist, const char *sep, struct sockaddr_storage *from, char *errbuf, int errbuflen) argument
1261 if ((hostlist) && (hostlist[0]))
1263 char *token; /* temp, needed to separate items into the hostlist */
1273 temphostlist = strdup(hostlist);
1366 /* No hostlist, so we have to return 'empty list' */
H A Dpcap-rpcap.c2629 SOCKET pcap_remoteact_accept(const char *address, const char *port, const char *hostlist, char *connectinghost, struct pcap_rmtauth *auth, char *errbuf) argument
2704 if (sock_check_hostlist((char *)hostlist, RPCAP_HOSTLIST_SEP, &from, errbuf, PCAP_ERRBUF_SIZE) < 0)
2875 int pcap_remoteact_list(char *hostlist, char sep, int size, char *errbuf) argument
2884 *hostlist = 0;
2909 pcap_strlcat(hostlist, hoststr, PCAP_ERRBUF_SIZE);
2910 hostlist[len - 1] = sep;
2911 hostlist[len] = 0;
/freebsd-11-stable/usr.sbin/mountd/
H A Dmountd.c106 struct hostlist *dp_hosts; /* List of hosts this dir exported to */
169 struct hostlist { struct
172 struct hostlist *ht_next;
218 static void free_host(struct hostlist *);
231 static struct hostlist *get_ht(void);
1418 struct hostlist *hp;
1463 if (gotalldir && hp == (struct hostlist *)NULL) {
2417 dp->dp_hosts = (struct hostlist *)NULL;
2433 struct hostlist *hp;
2486 struct hostlist *h
[all...]
/freebsd-11-stable/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-11-stable/contrib/libpcap/pcap/
H A Dpcap.h963 const char *hostlist, char *connectinghost,
965 PCAP_API int pcap_remoteact_list(char *hostlist, char sep, int size,
/freebsd-11-stable/contrib/sendmail/src/
H A Dmap.c5432 char *hostlist, *host; local
5466 hostlist = newstr(pmap->ph_servers);
5467 for (host = strtok(hostlist, " ");
5499 sm_free(hostlist); /* XXX */
5523 sm_free(hostlist); /* XXX */

Completed in 183 milliseconds