]> git.pond.sub.org Git - empserver/blob - src/lib/subs/wire.c
Import of Empire 4.2.12
[empserver] / src / lib / subs / wire.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2000, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  ---
21  *
22  *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  wire.c: Write an announcement to the world
29  * 
30  *  Known contributors to this file:
31  *    
32  */
33
34 #include "misc.h"
35 #include <fcntl.h>
36 #if !defined(_WIN32)
37 #include <sys/uio.h>
38 #endif
39 #include "nat.h"
40 #include "tel.h"
41 #include "file.h"
42 #include "prototypes.h"
43
44 #if 0
45 int
46 typed_wire(natid from, natid to, s_char *message, int type)
47 {
48         register s_char *bp;
49         int     len;
50         struct  telstr tel;
51         struct  natstr *np;
52         struct  iovec iov[2];
53         int     fd;
54         s_char  buf[1024];
55
56         if ((np = getnatp(to)) == 0 ||
57                 ((np->nat_stat & STAT_NORM) == 0 &&
58                 (np->nat_stat & STAT_SANCT) == 0))
59                 return 0;
60         if ((fd = open(wirebox(buf, to), O_WRONLY|O_APPEND, 0)) < 0) {
61                 logerror("telegram 'open' of %s (#%d) failed",
62                         wirebox(buf, to), to);
63                 return 0;
64         }
65         tel.tel_from = from;
66         (void) time(&tel.tel_date);
67         bp = message;
68         while (*bp++)
69                 ;
70         len = bp - message;
71         if (len >= MAXTELSIZE)
72                 len = MAXTELSIZE;
73         message[len] = 0;
74         tel.tel_length = len;
75         tel.tel_type = type;
76         iov[0].iov_base = (caddr_t) &tel;
77         iov[0].iov_len = sizeof(tel);
78         iov[1].iov_base = message;
79         iov[1].iov_len = len;
80         if (writev(fd, iov, 2) < iov[0].iov_len + iov[1].iov_len) {
81                 logerror("telegram 'write' to #%d failed", to);
82         } else {
83                 np->nat_ann++;
84                 /* don't do putnat because of expense */
85         }
86         (void) close(fd);
87         return 0;
88 }
89 #endif