Mercurial > masqmail-0.2
comparison src/mservdetect.c @ 0:08114f7dcc23 0.2.21
this is masqmail-0.2.21 from oliver kurth
author | meillo@marmaro.de |
---|---|
date | Fri, 26 Sep 2008 17:05:23 +0200 |
parents | |
children | 26e34ae9a3e3 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:08114f7dcc23 |
---|---|
1 /* MasqMail | |
2 Copyright (C) 1999-2001 Oliver Kurth | |
3 | |
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. | |
8 | |
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. | |
13 | |
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 */ | |
18 | |
19 /* | |
20 #include "masqmail.h" | |
21 #include "readsock.h" | |
22 #include "mserver.h" | |
23 */ | |
24 | |
25 #include "config.h" | |
26 | |
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 */ | |
36 | |
37 void logwrite(int pri, const char *fmt, ...) | |
38 { | |
39 va_list args; | |
40 va_start(args, fmt); | |
41 | |
42 vfprintf(stdout, fmt, args); | |
43 | |
44 va_end(args); | |
45 } | |
46 | |
47 void debugf(const char *fmt, ...) | |
48 { | |
49 va_list args; | |
50 va_start(args, fmt); | |
51 | |
52 vfprintf(stdout, fmt, args); | |
53 | |
54 va_end(args); | |
55 } | |
56 | |
57 int main(int argc, char *argv[]) | |
58 { | |
59 if(argc == 3){ | |
60 interface iface; | |
61 gchar *name; | |
62 | |
63 iface.address = g_strdup(argv[1]); | |
64 iface.port = atoi(argv[2]); | |
65 | |
66 name = mserver_detect_online(&iface); | |
67 | |
68 printf("%s\n", name); | |
69 | |
70 exit(EXIT_SUCCESS); | |
71 }else{ | |
72 fprintf(stderr, "usage %s <host> <port>\n", argv[0]); | |
73 exit(EXIT_FAILURE); | |
74 } | |
75 } | |
76 |