masqmail-0.2

view src/mservdetect.c @ 72:ad034b57f3b2

fixed Debian bug 536060 (log files are closed after SIGHUP receival) Explanation: When run in daemon mode, first the log files are opened. They get assigned to the file descriptors 3 and 4 usually. Then std{in,out,err} are closed. When SIGHUP comes in, all open files are closes and masqmail reexecutes itself. The new masqmail instance opens the log files at fd 0 and 1 now, but std{in,out,err} are closed afterwards, thus the log files are closed. The fix is to close the log files before std{in,out,err} are closed, in case the log files have higher fds. After std{in,out,err} were closed, the log files get opened again, now. See also: http://bugs.debian.org/536060
author meillo@marmaro.de
date Wed, 16 Jun 2010 10:32:20 +0200
parents 08114f7dcc23
children
line source
1 /* MasqMail
2 Copyright (C) 1999-2001 Oliver Kurth
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program 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
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 */
19 /*
20 #include "masqmail.h"
21 #include "readsock.h"
22 #include "mserver.h"
23 */
25 #include "config.h"
27 /* ugly hack */
28 #ifndef ENABLE_MSERVER
29 #define ENABLE_MSERVER 1
30 #include "mserver.c"
31 #else
32 #include "masqmail.h"
33 #include "readsock.h"
34 #include "mserver.h"
35 #endif /* ENABLE_MSERVER */
37 void
38 logwrite(int pri, const char *fmt, ...)
39 {
40 va_list args;
41 va_start(args, fmt);
43 vfprintf(stdout, fmt, args);
45 va_end(args);
46 }
48 void
49 debugf(const char *fmt, ...)
50 {
51 va_list args;
52 va_start(args, fmt);
54 vfprintf(stdout, fmt, args);
56 va_end(args);
57 }
59 int
60 main(int argc, char *argv[])
61 {
62 if (argc == 3) {
63 interface iface;
64 gchar *name;
66 iface.address = g_strdup(argv[1]);
67 iface.port = atoi(argv[2]);
69 name = mserver_detect_online(&iface);
71 printf("%s\n", name);
73 exit(EXIT_SUCCESS);
74 } else {
75 fprintf(stderr, "usage %s <host> <port>\n", argv[0]);
76 exit(EXIT_FAILURE);
77 }
78 }