masqmail-0.2

view src/mservdetect.c @ 0:08114f7dcc23

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
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 logwrite(int pri, const char *fmt, ...)
38 {
39 va_list args;
40 va_start(args, fmt);
42 vfprintf(stdout, fmt, args);
44 va_end(args);
45 }
47 void debugf(const char *fmt, ...)
48 {
49 va_list args;
50 va_start(args, fmt);
52 vfprintf(stdout, fmt, args);
54 va_end(args);
55 }
57 int main(int argc, char *argv[])
58 {
59 if(argc == 3){
60 interface iface;
61 gchar *name;
63 iface.address = g_strdup(argv[1]);
64 iface.port = atoi(argv[2]);
66 name = mserver_detect_online(&iface);
68 printf("%s\n", name);
70 exit(EXIT_SUCCESS);
71 }else{
72 fprintf(stderr, "usage %s <host> <port>\n", argv[0]);
73 exit(EXIT_FAILURE);
74 }
75 }