diff options
author | Yang Tse <yangsita@gmail.com> | 2005-12-16 23:15:33 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2005-12-16 23:15:33 +0000 |
commit | 03af76b63180c92d4ff23031150af1b8261b48a0 (patch) | |
tree | 042c9d002ed6327cc84a9b44949fb5f72daa5e55 /acinclude.m4 | |
parent | e105d5c28f3f6c7034a8da2682bbc662ad6c15e1 (diff) | |
download | curl-03af76b63180c92d4ff23031150af1b8261b48a0.tar.gz |
Since there is no proof of the existence of a platform which would
justify checking for socklen_t in more than one function, the code
used to find a valid socklen_t replacement is simplified back. The
only function that will be used to find a socklen_t replacement is
getpeername, as it has been since revision 1.4 of curl/acinclude.m4
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 1418ce739..cfa734b11 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -152,15 +152,9 @@ AC_DEFUN([CURL_CHECK_TYPE_SOCKLEN_T], [ #endif #endif int getpeername (int, $arg2 *, $t *); - int getsockname (int, $arg2 *, $t *); - int bind (int, $arg2 *, $t); - int accept (int, $arg2 *, $t *); ],[ $t len=0; getpeername(0,0,&len); - getsockname(0,0,&len); - bind(0,0,len); - accept(0,0,&len); ]) ],[ curl_cv_socklen_t_equiv="$t" |