Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 50727 invoked by uid 500); 16 Jul 2001 18:46:15 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 50692 invoked from network); 16 Jul 2001 18:46:15 -0000 Date: 16 Jul 2001 18:45:34 -0000 Message-ID: <20010716184534.33391.qmail@icarus.apache.org> From: wrowe@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/network_io/os2 sockets.c X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N wrowe 01/07/16 11:45:34 Modified: network_io/os2 sockets.c Log: Placeholders are useful Revision Changes Path 1.42 +4 -2 apr/network_io/os2/sockets.c Index: sockets.c =================================================================== RCS file: /home/cvs/apr/network_io/os2/sockets.c,v retrieving revision 1.41 retrieving revision 1.42 diff -u -r1.41 -r1.42 --- sockets.c 2001/05/02 02:32:45 1.41 +++ sockets.c 2001/07/16 18:45:33 1.42 @@ -129,8 +129,9 @@ } apr_status_t apr_socket_create(apr_socket_t **new, int ofamily, int type, - apr_pool_t *cont) + apr_int32_t inherit, apr_pool_t *cont) { + /* TODO: Implement inherit flag */ int family = ofamily; if (family == AF_UNSPEC) { @@ -270,8 +271,9 @@ apr_status_t apr_os_sock_make(apr_socket_t **apr_sock, apr_os_sock_info_t *os_sock_info, - apr_pool_t *cont) + apr_int32_t inherit, apr_pool_t *cont) { + /* TODO: Implement inherit flag */ alloc_socket(apr_sock, cont); set_socket_vars(*apr_sock, os_sock_info->family); (*apr_sock)->timeout = -1;