From: wessels <> Date: Thu, 22 Aug 1996 02:10:41 +0000 (+0000) Subject: remove fd_of_first_client() func X-Git-Tag: SQUID_3_0_PRE1~5941 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=63ebd8b76cfdaf3414b8eade34e54488c3051242;p=thirdparty%2Fsquid.git remove fd_of_first_client() func --- diff --git a/src/comm.cc b/src/comm.cc index 1e83a9b941..f1b8fba6cc 100644 --- a/src/comm.cc +++ b/src/comm.cc @@ -1,6 +1,6 @@ /* - * $Id: comm.cc,v 1.53 1996/08/14 22:57:09 wessels Exp $ + * $Id: comm.cc,v 1.54 1996/08/21 20:10:41 wessels Exp $ * * DEBUG: section 5 Socket Functions * AUTHOR: Harvest Derived @@ -1215,21 +1215,6 @@ static void Reserve_More_FDs() } } -int fd_of_first_client(e) - StoreEntry *e; -{ - int fd; - - fd = e->mem_obj->fd_of_first_client; - - if (fd > 0) { - if (e == fd_table[fd].store_entry) { - return (fd); - } - } - return (-1); -} - /* Read from FD. */ static int commHandleRead(fd, state) int fd;