xref: /dragonfly/sbin/rconfig/defs.h (revision 1a5888d3)
1 /*
2  * DEFS.H
3  *
4  * Copyright (c) 2003,2004 The DragonFly Project.  All rights reserved.
5  *
6  * This code is derived from software contributed to The DragonFly Project
7  * by Matthew Dillon <dillon@backplane.com>
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  *
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in
17  *    the documentation and/or other materials provided with the
18  *    distribution.
19  * 3. Neither the name of The DragonFly Project nor the names of its
20  *    contributors may be used to endorse or promote products derived
21  *    from this software without specific, prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
26  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
27  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
28  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
29  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
30  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
31  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
32  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
33  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  */
36 
37 #include <sys/param.h>
38 #include <sys/file.h>
39 #include <sys/stat.h>
40 #include <sys/ioctl.h>
41 #include <sys/socket.h>
42 #include <sys/sockio.h>
43 #include <sys/sysctl.h>
44 #include <sys/wait.h>
45 
46 #include <net/ethernet.h>
47 #include <net/if.h>
48 #include <net/if_var.h>
49 #include <net/if_dl.h>
50 #include <net/if_types.h>
51 #include <net/route.h>
52 
53 #include <netinet/in.h>
54 #include <netinet/in_var.h>
55 #include <arpa/inet.h>
56 #include <netdb.h>
57 
58 #include <stdio.h>
59 #include <stdlib.h>
60 #include <stdarg.h>
61 #include <unistd.h>
62 #include <string.h>
63 #include <fcntl.h>
64 #include <errno.h>
65 #include <signal.h>
66 
67 typedef struct tag {
68     struct tag *next;
69     const char *name;
70     int flags;
71 } *tag_t;
72 
73 #define PAS_ALPHA	0x0001
74 #define PAS_SYMBOL	0x0002
75 #define PAS_NUMERIC	0x0004
76 #define PAS_ANY		0x0008
77 
78 extern const char *TagDir;
79 extern const char *WorkDir;
80 extern const char *ConfigFiles;
81 extern tag_t AddrBase;
82 extern tag_t VarBase;
83 extern int VerboseOpt;
84 
85 extern void doServer(void);
86 extern void doClient(void);
87 
88 const char *parse_str(char **scanp, int flags);
89 int udp_transact(struct sockaddr_in *sain, struct sockaddr_in *rsin, int *pfd,
90 	char **bufp, int *lenp, const char *ctl, ...) __printflike(6, 7);
91 int tcp_transact(struct sockaddr_in *sain, FILE **pfi, FILE **pfo, char **bufp,
92 	int *lenp, const char *ctl, ...) __printf0like(6, 7);
93 
94 
95