diff options
author | venaas <venaas> | 2008-02-12 08:23:17 +0000 |
---|---|---|
committer | venaas <venaas@e88ac4ed-0b26-0410-9574-a7f39faa03bf> | 2008-02-12 08:23:17 +0000 |
commit | 416c6fd6bff3013eebb33e68f1c648ef22e9a965 (patch) | |
tree | 8613db42f685a665f0179fe0de83970bd953e5e1 /radsecproxy.c | |
parent | 10f83ae76c00713065236708251a7d4abfece883 (diff) |
trying to support solaris9
git-svn-id: https://svn.testnett.uninett.no/radsecproxy/branches/release-1.1@209 e88ac4ed-0b26-0410-9574-a7f39faa03bf
Diffstat (limited to 'radsecproxy.c')
-rw-r--r-- | radsecproxy.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/radsecproxy.c b/radsecproxy.c index d4a2fc8..a4ffed8 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -34,6 +34,9 @@ #include <netdb.h> #include <string.h> #include <unistd.h> +#ifdef SYS_SOLARIS9 +#include <fcntl.h> +#endif #include <sys/time.h> #include <sys/types.h> #include <arpa/inet.h> @@ -2768,6 +2771,23 @@ void getargs(int argc, char **argv, uint8_t *foreground, uint8_t *pretend, uint8 exit(1); } +#ifdef SYS_SOLARIS9 +int daemon(int a, int b) { + int i; + + if (fork()) + exit(0); + + setsid(); + + for (i = 0; i < 3; i++) { + close(i); + open("/dev/null", O_RDWR); + } + return 1; +} +#endif + int main(int argc, char **argv) { pthread_t udpserverth, udpaccserverth, udpclient4rdth, udpclient6rdth; struct list_node *entry; |