File: server.h

package info (click to toggle)
binkd 1.1a-111-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,500 kB
  • sloc: ansic: 22,959; makefile: 1,113; perl: 369; sh: 325
file content (16 lines) | stat: -rw-r--r-- 222 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _servmgr_h
#define _servmgr_h

#define MAX_LISTENSOCK 16

extern SOCKET sockfd[MAX_LISTENSOCK];
extern int sockfd_used;

/*
 * Listens... Than calls protocol()
 */
void servmgr(void);

extern int ext_rand;

#endif