You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2001/07/16 20:45:34 UTC

cvs commit: apr/network_io/os2 sockets.c

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;