File: im-srv.h

package info (click to toggle)
gcin 2.8.8%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 22,672 kB
  • sloc: cpp: 33,774; ansic: 9,313; makefile: 652; sh: 558
file content (26 lines) | stat: -rwxr-xr-x 406 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
typedef enum {
  Connection_type_unix = 1,
  Connection_type_tcp = 2
} Connection_type;

typedef struct {
  ClientState *cs;
  int tag;
  u_int seed;
  Connection_type type;
#if	UNIX
  GIOChannel *channel;
  int fd;
#else
#if SHARED_MEMORY
  GCIN_SHM fd;
  DWORD pid;
#else
  HANDLE fd;
#endif
#endif
} GCIN_ENT;

extern GCIN_ENT *gcin_clients;
extern int gcin_clientsN;
extern Server_IP_port srv_ip_port;