Add to git.
[pthrlib.git] / examples / pthr_eg2_server_main.c
1 /* Pseudothread server example.
2  * - by Richard W.M. Jones <rich@annexia.org>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the Free
16  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17  *
18  * $Id: pthr_eg2_server_main.c,v 1.4 2002/08/21 10:42:16 rich Exp $
19  */
20
21 #include "config.h"
22
23 #include <stdio.h>
24 #include <stdlib.h>
25
26 #ifdef HAVE_UNISTD_H
27 #include <unistd.h>
28 #endif
29
30 #ifdef HAVE_SIGNAL_H
31 #include <signal.h>
32 #endif
33
34 #ifdef HAVE_STRING_H
35 #include <string.h>
36 #endif
37
38 #include "src/pthr_server.h"
39 #include "pthr_eg2_server.h"
40
41 static void start_processor (int sock, void *data);
42 static void catch_quit_signal (int sig);
43
44 const char *root = "/tmp", *user = "nobody";
45
46 int
47 main (int argc, char *argv[])
48 {
49   struct sigaction sa;
50
51   /* Intercept signals. */
52   memset (&sa, 0, sizeof sa);
53   sa.sa_handler = catch_quit_signal;
54   sa.sa_flags = SA_RESTART;
55   sigaction (SIGINT, &sa, 0);
56   sigaction (SIGQUIT, &sa, 0);
57   sigaction (SIGTERM, &sa, 0);
58
59   /* ... but ignore SIGPIPE errors. */
60   sa.sa_handler = SIG_IGN;
61   sa.sa_flags = SA_RESTART;
62   sigaction (SIGPIPE, &sa, 0);
63
64   /* Start up the server. */
65   pthr_server_chroot (root);
66   pthr_server_username (user);
67   pthr_server_main_loop (argc, argv, start_processor);
68
69   exit (0);
70 }
71
72 static void
73 start_processor (int sock, void *data)
74 {
75   (void) new_eg2_server_processor (sock);
76 }
77
78 static void
79 catch_quit_signal (int sig)
80 {
81   exit (0);
82 }