| /src/crypto/external/bsd/heimdal/dist/lib/roken/ |
| daemon.c | 1 /* $NetBSD: daemon.c,v 1.2 2017/01/28 21:31:50 christos Exp $ */ 33 static char sccsid[] = "@(#)daemon.c 8.1 (Berkeley) 6/4/93"; 53 daemon(int nochdir, int noclose) function
|
| /src/external/bsd/libbind/dist/bsd/ |
| daemon.c | 1 /* $NetBSD: daemon.c,v 1.1.1.2 2012/09/09 16:07:42 christos Exp $ */ 4 static const char sccsid[] = "@(#)daemon.c 8.1 (Berkeley) 6/4/93"; 5 static const char rcsid[] = "Id: daemon.c,v 1.2 2005/04/27 04:56:10 sra Exp "; 54 daemon(int nochdir, int noclose) { function
|
| /src/external/apache2/mDNSResponder/dist/mDNSPosix/ |
| mDNSUNP.c | 220 int daemon(int nochdir, int noclose) function
|
| PosixDaemon.c | 17 File: daemon.c 24 // In Mac OS X 10.5 and later trying to use the daemon function gives a “‘daemon’ is deprecated” 26 // Since this is supposed to be portable cross-platform code, we don't care that daemon is 28 #define daemon yes_we_know_that_daemon_is_deprecated_in_os_x_10_5_thankyou macro 43 #undef daemon macro 44 extern int daemon(int, int); 49 #include "mDNSUNP.h" // For daemon() 71 // On successful registration of dot-local mDNS host name, daemon may want to check if 89 // %%% Reconfigure() probably belongs in the platform support layer (mDNSPosix.c), not the daemon cd [all...] |
| /src/lib/libwrap/ |
| eval.c | 135 char *daemon = eval_daemon(request); local 138 (void)snprintf(both, sizeof both, "%s@%s", daemon, host); 141 return (daemon);
|
| tcpd.h | 28 char daemon[STRING_LENGTH]; /* access via eval_daemon(request) */ member in struct:request_info 80 extern void rfc931 /* client name from RFC 931 daemon */ 143 #define eval_daemon(r) ((r)->daemon) /* daemon process name */
|
| /src/usr.sbin/tcpdmatch/ |
| tcpdmatch.c | 6 * usage: tcpdmatch [-d] [-i inet_conf] daemon[@host] [user@]host 13 * that would normally be reported via the syslog daemon. 69 char *daemon; local 113 * Default is to specify a daemon process name. When daemon@host is 119 daemon = strrchr(argv[optind], '/') + 1; 120 tcpd_warn("%s: daemon name normalized to: %s", argv[optind], daemon); 122 daemon = argv[optind]; 146 switch (inet_get(daemon)) { [all...] |
| /src/usr.sbin/tcpdchk/ |
| inetcf.c | 196 char daemon[BUFSIZ]; local 244 * the daemon pathname. 261 snprintf(daemon, sizeof(daemon), "%s/%s", REAL_DAEMON_DIR, arg0); 262 if (check_path(daemon, &st) < 0) { 266 tcpd_warn("%s: not executable", daemon); 277 snprintf(daemon, sizeof(daemon), "%s/%s", REAL_DAEMON_DIR, arg0); 278 if (STR_EQ(path, daemon)) { 280 } else if (check_path(daemon, &st) >= 0) [all...] |
| /src/external/bsd/unbound/dist/daemon/ |
| worker.h | 2 * daemon/worker.h - worker that handles a pending list of requests. 52 #include "daemon/stats.h" 58 struct daemon; 89 /** the thread number (in daemon array). First in struct for debug. */ 91 /** global shared daemon structure */ 92 struct daemon* daemon; member in struct:worker 147 * @param daemon: the daemon that this worker thread is part of. 153 struct worker* worker_create(struct daemon* daemon, int id, int* ports, int n) [all...] |
| daemon.c | 2 * daemon/daemon.c - collection of workers that handles requests. 39 * The daemon consists of global settings and a number of workers. 69 #include "daemon/daemon.h" 70 #include "daemon/worker.h" 71 #include "daemon/remote.h" 72 #include "daemon/acl_list.h" 99 #include <systemd/sd-daemon.h> 225 void* daemon_setup_listen_dot_sslctx(struct daemon* daemon 454 struct daemon* daemon = (struct daemon*)calloc(1, local [all...] |
| daemon.h | 2 * daemon/daemon.h - collection of workers that handles requests. 39 * The daemon consists of global settings and a number of workers. 80 struct daemon { struct 152 /** time when daemon started */ 194 * Initialize daemon structure. 195 * @return: The daemon structure, or NULL on error. 197 struct daemon* daemon_init(void); 201 * The cfg member pointer must have been set for the daemon. 202 * @param daemon: the daemon [all...] |
| unbound.c | 2 * daemon/unbound.c - main program for unbound DNS resolver daemon. 40 * Main program to start the DNS resolver daemon. 49 #include "daemon/daemon.h" 50 #include "daemon/remote.h" 146 printf(" start unbound daemon DNS resolver.\n"); 301 apply_settings(struct daemon* daemon, struct config_file* cfg, 311 daemon_apply_cfg(daemon, cfg) 685 struct daemon* daemon = NULL; local [all...] |
| remote.c | 2 * daemon/remote.c - remote control for the unbound daemon. 39 * This file contains the remote control functionality for the daemon. 60 #include "daemon/remote.h" 61 #include "daemon/worker.h" 62 #include "daemon/daemon.h" 63 #include "daemon/stats.h" 64 #include "daemon/cachedump.h" 142 struct daemon* daemon) 1245 struct daemon* daemon = worker->daemon; local 5591 struct daemon* daemon = fr->worker->daemon; local 6539 struct daemon* daemon = fr->worker->daemon; local 7428 struct daemon* daemon = fr->worker->daemon; local 7822 struct daemon* daemon = worker->daemon; local 7955 struct daemon* daemon = fr->worker->daemon; local 8004 struct daemon* daemon = fr->worker->daemon; local 8434 struct daemon* daemon = printq->worker->daemon; local [all...] |
| /src/external/bsd/unbound/dist/winrc/ |
| win_svc.c | 49 #include "daemon/daemon.h" 50 #include "daemon/worker.h" 51 #include "daemon/remote.h" 299 * @param d: daemon returned here. 304 service_init(int r, struct daemon** d, struct config_file** c) 307 struct daemon* daemon = NULL; local 316 /* create daemon */ 317 if(r) daemon = *d 438 struct daemon* daemon = NULL; local [all...] |
| /src/external/bsd/unbound/dist/testcode/ |
| replay.h | 157 struct daemon; 311 /** the daemon structure passed in worker call to remote accept open */ 312 struct daemon* daemon; member in struct:replay_runtime
|
| /src/external/mpl/dhcp/dist/server/ |
| dhcpd.c | 5 DHCP Server Daemon. */ 287 int daemon = 1; local 340 /* Parse arguments changing daemon */ 344 daemon = 0; 348 daemon = 0; 352 daemon = 0; 356 daemon = 0; 398 daemon = 0; 405 /* When not forbidden prepare to become a daemon */ 406 if (daemon) { [all...] |
| /src/external/bsd/openldap/dist/servers/lloadd/ |
| lload.h | 173 enum lcf_daemon daemon; member in union:LloadChange::__anon7738
|
| /src/lib/libc/include/ |
| namespace.h | 289 #define daemon _daemon macro
|