Searched refs:fqdn (Results 1 - 21 of 21) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/dnsmasq-2.15/src/
H A Disc.c21 char *name, *fqdn; member in struct:isc_lease
203 lease->fqdn = NULL;
211 if (suffix && (lease->fqdn = malloc(strlen(hostname) + strlen(suffix) + 2)))
213 strcpy(lease->fqdn, hostname);
214 strcat(lease->fqdn, ".");
215 strcat(lease->fqdn, suffix);
234 if (lease->fqdn)
235 free(lease->fqdn);
248 cache_add_dhcp_entry(lease->fqdn, &lease->addr, lease->expires);
H A Dlease.c180 cache_add_dhcp_entry(lease->fqdn, &lease->addr, lease->expires);
205 if (lease->fqdn)
206 free(lease->fqdn);
270 lease->hostname = lease->fqdn = NULL;
324 if (lease_tmp->fqdn)
326 new_fqdn = lease_tmp->fqdn;
327 lease_tmp->fqdn = NULL;
344 if (lease->fqdn)
345 free(lease->fqdn);
348 lease->fqdn
[all...]
H A Ddnsmasq.h252 char *hostname, *fqdn; /* name from client-hostname option or config */ member in struct:dhcp_lease
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/networking/udhcp/
H A Ddhcpc.h29 uint8_t *fqdn; /* Optional fully qualified domain name to use */ member in struct:client_config_t
H A Dclientpacket.c50 if (client_config.fqdn)
51 add_option_string(packet->options, client_config.fqdn);
H A Ddhcpc.c192 "fqdn\0" Required_argument "F"
236 client_config.fqdn = alloc_dhcp_option(DHCP_FQDN, str_F, 3);
243 client_config.fqdn[OPT_DATA + 0] = 0x1;
244 /* client_config.fqdn[OPT_DATA + 1] = 0; - redundant */
245 /* client_config.fqdn[OPT_DATA + 2] = 0; - redundant */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/etc/afpd/
H A Dstatus.c193 ddp address = 0x03, fqdn = 0x04)
200 *data++ = ((options->fqdn && dsi)? 1 : 0) + (dsi ? 1 : 0) + (asp ? 1 : 0) +
201 (((options->flags & OPTION_ANNOUNCESSH) && options->fqdn && dsi)? 1 : 0);
248 if (options->fqdn && dsi) {
249 size_t len = strlen(options->fqdn);
253 memcpy(data, options->fqdn, len);
268 memcpy(data, options->fqdn, len);
315 * service '/' fqdn '@' realm
317 if (options->k5service && options->k5realm && options->fqdn) {
320 char *p = strchr( options->fqdn, '
[all...]
H A Dafp_options.c116 if (opt->fqdn && (opt->fqdn != save->fqdn))
117 free(opt->fqdn);
432 if ((c = getoption(buf, "-fqdn"))) {
440 options->fqdn = opt;
443 LOG(log_error, logtype_afpd, "error parsing -fqdn, gethostbyname failed for: %s", c);
H A Dafp_config.c401 if (options->fqdn) {
402 hostname = options->fqdn;
H A Duam.c455 *buf = obj->options.fqdn;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/etc/afpd/
H A Dstatus.c210 ddp address = 0x03, fqdn = 0x04)
217 *data++ = ((options->fqdn && dsi)? 1 : 0) + (dsi ? 1 : 0) +
221 (((options->flags & OPTION_ANNOUNCESSH) && options->fqdn && dsi)? 1 : 0);
268 if (options->fqdn && dsi) {
269 size_t len = strlen(options->fqdn);
273 memcpy(data, options->fqdn, len);
288 memcpy(data, options->fqdn, len);
335 * service '/' fqdn '@' realm
337 if (options->k5service && options->k5realm && options->fqdn) {
340 char *p = strchr( options->fqdn, '
[all...]
H A Dafp_options.c116 if (opt->fqdn && (opt->fqdn != save->fqdn))
117 free(opt->fqdn);
442 if ((c = getoption(buf, "-fqdn"))) {
450 options->fqdn = opt;
453 LOG(log_error, logtype_afpd, "error parsing -fqdn, gethostbyname failed for: %s", c);
H A Dafp_config.c393 if (options->fqdn) {
394 hostname = options->fqdn;
H A Duam.c457 *buf = obj->options.fqdn;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/etc/uams/
H A Duams_gss.c144 char *fqdn, *service, *principal, *p; local
150 if (uam_afpserver_option(obj, UAM_OPTION_FQDN, (void*) &fqdn, &fqdnlen) < 0)
152 LOG(log_debug, logtype_uams, "get_afpd_principal: fqdn: %s", fqdn);
159 if (!service || !servicelen || !fqdn || !fqdnlen) {
176 * Format: 'service@fqdn'
182 * The fqdn we get from afpd may contain a port.
183 * We need to strip the port from fqdn for principal.
185 if ((p = strchr(fqdn, ':')))
188 strlcat( principal, fqdn, principal_lengt
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/etc/uams/
H A Duams_gss.c146 char *fqdn, *service, *principal, *p; local
152 if (uam_afpserver_option(obj, UAM_OPTION_FQDN, (void*) &fqdn, &fqdnlen) < 0)
154 LOG(log_debug, logtype_uams, "get_afpd_principal: fqdn: %s", fqdn);
161 if (!service || !servicelen || !fqdn || !fqdnlen) {
180 * Format: 'service@fqdn'
186 * The fqdn we get from afpd may contain a port.
187 * We need to strip the port from fqdn for principal.
189 if ((p = strchr(fqdn, ':')))
192 strlcat( principal, fqdn, principal_lengt
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/include/atalk/
H A Dglobals.h74 char *uampath, *fqdn; member in struct:afp_options
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/include/atalk/
H A Dglobals.h78 char *uampath, *fqdn; member in struct:afp_options
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Duser-email87 hostfqdn=`"$libdir"/gettext/hostname --fqdn 2>/dev/null | sed 1q`
H A Duser-email.sh.in87 hostfqdn=`"$libdir"/gettext/hostname --fqdn 2>/dev/null | sed 1q`
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/lib/
H A Dutil.c2663 void name_to_fqdn(fstring fqdn, const char *name) argument
2668 fstrcpy(fqdn,hp->h_name);
2671 fstrcpy(fqdn, name);

Completed in 260 milliseconds