From 285504d48d7087e995645a26f71488ad27027c38 Mon Sep 17 00:00:00 2001 From: Stelian Ionescu Date: Wed, 9 Jan 2008 01:39:07 +0100 Subject: [PATCH] Remove unused foreign definitions of struct hostent and struct servent. Signed-off-by: Stelian Ionescu --- sockets/grovel.lisp | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/sockets/grovel.lisp b/sockets/grovel.lisp index 995c67e..ff86670 100644 --- a/sockets/grovel.lisp +++ b/sockets/grovel.lisp @@ -130,19 +130,6 @@ (cstruct sockaddr-storage "struct sockaddr_storage" (family "ss_family" :type sa-family)) -(cstruct hostent "struct hostent" - (name "h_name" :type :string) - (aliases "h_aliases" :type :pointer) - (type "h_addrtype" :type :int) - (length "h_length" :type :int) - (addresses "h_addr_list" :type :pointer)) - -(cstruct servent "struct servent" - (name "s_name" :type :string) - (aliases "s_aliases" :type :pointer) - (port "s_port" :type :int) - (proto "s_proto" :type :string)) - (constant (somaxconn "SOMAXCONN") :documentation "Maximum listen() queue length") -- 2.11.4.GIT