masqmail-0.2
view src/mservdetect.c @ 179:ec3fe72a3e99
Fixed an important bug with folded headers!
g_strconcat() returns a *copy* of the string, but hdr->value still
pointed to the old header (which probably was a memory leak, too).
If the folded part had been quite small it was likely that the new
string was at the same position as the old one, thus making everything
go well. But if pretty long headers were folded several times it was
likely that the new string was allocated somewhere else in memory,
thus breaking things. In result mails to lots of recipients (folded
header) were frequently only sent to the ones in the first line. Sorry
for the inconvenience.
author | meillo@marmaro.de |
---|---|
date | Fri, 03 Jun 2011 09:52:17 +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 }