diff options
author | Zeev Suraski <zeev@php.net> | 2000-09-05 19:06:29 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2000-09-05 19:06:29 +0000 |
commit | eb3214490287d4f8fd87a0e709f24e56eb97ae12 (patch) | |
tree | db7976f0421b040f53f5ae3ea37b9179327cb563 /main/php_network.h | |
parent | 3c45b97804205dfe299814d6375d2022ca800d7a (diff) | |
download | php-git-eb3214490287d4f8fd87a0e709f24e56eb97ae12.tar.gz |
- Remove track_vars - it is now always on
- Make the various $HTTP_*_VARS[] arrays be defined always,
even if they're empty
- Fix Win32 build and warnings
Diffstat (limited to 'main/php_network.h')
-rw-r--r-- | main/php_network.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/main/php_network.h b/main/php_network.h index 7ce11c22ec..f448117c99 100644 --- a/main/php_network.h +++ b/main/php_network.h @@ -17,7 +17,12 @@ */ /* $Id$ */ -int php_hostconnect(char *host, int port, int socktype, int timeout); +#ifndef _PHP_NETWORK_H +#define _PHP_NETWORK_H + +int php_hostconnect(char *host, unsigned short port, int socktype, int timeout); + +#endif /* _PHP_NETWORK_H */ /* * Local variables: |