You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Doug MacEachern <do...@hyperreal.org> on 1997/07/20 00:29:25 UTC

cvs commit: apache/src buff.h

dougm       97/07/19 15:29:25

  Modified:    src       buff.h
  Log:
  added transport handle slot (t_handle) to the BUFF structure
  Submitted by: Doug MacEachern
  Reviewed by: Dean Gaudet
  
  Revision  Changes    Path
  1.20      +5 -0      apache/src/buff.h
  
  Index: buff.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/buff.h,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -C3 -r1.19 -r1.20
  *** buff.h	1997/07/15 21:39:51	1.19
  --- buff.h	1997/07/19 22:29:24	1.20
  ***************
  *** 101,106 ****
  --- 101,111 ----
        int fd;                /* the file descriptor */
        int fd_in;             /* input file descriptor, if different */
    
  +      /* transport handle, can be used to store things such as an RPC binding h\
  + \
  + andle */
  +      void *t_handle;
  + 
    #ifdef B_SFIO
        Sfio_t   *sf_in;
        Sfio_t   *sf_out;