Macintosh OSX changes.
This commit is contained in:
parent
a5ee77406f
commit
fe8c751f1b
1 changed files with 7 additions and 4 deletions
|
@ -69,13 +69,16 @@ int result;
|
||||||
|
|
||||||
//extern const char *const sys_errlist[];
|
//extern const char *const sys_errlist[];
|
||||||
|
|
||||||
|
/* -dlw- I fixed a few of the cases, but please make non externally used */
|
||||||
|
/* symbols static to avoid possible linker conflicts */
|
||||||
int current_port = 10000;
|
int current_port = 10000;
|
||||||
u_short base_port = 10000;
|
u_short base_port = 10000;
|
||||||
u_short end_port = 10010;
|
u_short end_port = 10010;
|
||||||
int verbose = 0;
|
|
||||||
struct hostent *host_info, *f_host_info;
|
static int verbose = 0;
|
||||||
struct servent *service_info;
|
static struct hostent *host_info, *f_host_info;
|
||||||
struct utsname myname;
|
static struct servent *service_info;
|
||||||
|
static struct utsname myname;
|
||||||
|
|
||||||
/* Program-stuff */
|
/* Program-stuff */
|
||||||
int i, j;
|
int i, j;
|
||||||
|
|
Loading…
Reference in a new issue