|
|
1.1 root 1: /* client.h */
2:
3: /* Synchronet client information to share with SBBSCTRL */
4:
1.1.1.2 ! root 5: /* $Id: client.h,v 1.6 2008/06/04 04:38:47 deuce Exp $ */
1.1 root 6:
7: /****************************************************************************
8: * @format.tab-size 4 (Plain Text/Source Code File Header) *
9: * @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) *
10: * *
11: * Copyright 2000 Rob Swindell - http://www.synchro.net/copyright.html *
12: * *
13: * This program is free software; you can redistribute it and/or *
14: * modify it under the terms of the GNU General Public License *
15: * as published by the Free Software Foundation; either version 2 *
16: * of the License, or (at your option) any later version. *
17: * See the GNU General Public License for more details: gpl.txt or *
18: * http://www.fsf.org/copyleft/gpl.html *
19: * *
20: * Anonymous FTP access to the most recent released source is available at *
21: * ftp://vert.synchro.net, ftp://cvs.synchro.net and ftp://ftp.synchro.net *
22: * *
23: * Anonymous CVS access to the development source and modification history *
24: * is available at cvs.synchro.net:/cvsroot/sbbs, example: *
25: * cvs -d :pserver:[email protected]:/cvsroot/sbbs login *
26: * (just hit return, no password is necessary) *
27: * cvs -d :pserver:[email protected]:/cvsroot/sbbs checkout src *
28: * *
29: * For Synchronet coding style and modification guidelines, see *
30: * http://www.synchro.net/source.html *
31: * *
32: * You are encouraged to submit any modifications (preferably in Unix diff *
33: * format) via e-mail to [email protected] *
34: * *
35: * Note: If this box doesn't appear square, then you need to fix your tabs. *
36: ****************************************************************************/
37:
38: #ifndef _CLIENT_H
39: #define _CLIENT_H
40:
41: #include "gen_defs.h" /* WORD, DWORD */
42: #include <time.h> /* time_t */
43:
44: /* Used for sbbsctrl->client window */
45: typedef struct {
46: size_t size; /* size of this struct */
47: char addr[16]; /* IP address */
48: char host[64]; /* host name */
49: WORD port; /* TCP port number */
50: time_t time; /* connect time */
51: const char* protocol; /* protocol description */
1.1.1.2 ! root 52: const char* user; /* user name */
1.1 root 53: char pad[32]; /* padding for future expansion */
54: } client_t;
55:
56: /* Used for ctrl/client.dab */
57: typedef struct client_rec {
58: DWORD local_addr;
59: DWORD remote_addr;
60: DWORD local_port;
61: DWORD remote_port;
62: DWORD socket;
63: /* 20 */
64: DWORD time;
65: /* 24 */
66: char protocol[16];
67: /* 40 */
68: char user_name[32];
69: /* 72 */
70: char local_host[64];
71: /* 136 */
72: char remote_host[64];
73: /* 200 */
74: char pad[512-200];
75: } client_rec_t;
76:
77: #endif /* Don't add anything after this line */
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.