diff options
author | Wez Furlong <wez@php.net> | 2003-02-28 19:53:21 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2003-02-28 19:53:21 +0000 |
commit | 1b53a2d12e520adec5cbbc60bf8f2b6d8e54eece (patch) | |
tree | 9ec880f9d210dc979ef007e1d69c4c53666f8a46 /configure.in | |
parent | 14bf872003ff96b60960d5b822a0bb846bff176f (diff) | |
download | php-git-1b53a2d12e520adec5cbbc60bf8f2b6d8e54eece.tar.gz |
New user-space functions:
. stream_socket_client() - similar to fsockopen(), but more powerful.
. stream_socket_server() - Creates a server socket.
. stream_socket_accept() - Accept a client connection.
. stream_socket_get_name() - Get local or remote name of socket.
Tidy up some leaks and debug printfs.
Move more streams functions into streamsfuncs.c and streamsfuncs.h.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 7232d34eab..eabade523b 100644 --- a/configure.in +++ b/configure.in @@ -461,6 +461,8 @@ getservbyport \ getrusage \ gettimeofday \ gmtime_r \ +inet_ntoa \ +inet_ntop \ isascii \ link \ localtime_r \ |