You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by st...@locus.apache.org on 2000/03/06 19:12:07 UTC

cvs commit: apache-2.0/src/lib/apr/file_io/win32 pipe.c

stoddard    00/03/06 10:12:07

  Modified:    src/lib/apr aprlib.def
               src/lib/apr/file_io/win32 pipe.c
  Log:
  Get the server compiling again under Win32. Still a lot of work to do
  on Windows wrt pipes, timing out pipes, non-blocking pipes, etc.
  
  Revision  Changes    Path
  1.12      +1 -0      apache-2.0/src/lib/apr/aprlib.def
  
  Index: aprlib.def
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/aprlib.def,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- aprlib.def	2000/02/21 16:41:39	1.11
  +++ aprlib.def	2000/03/06 18:12:06	1.12
  @@ -235,4 +235,5 @@
   	ap_get_remote_port @214
   	ap_set_remote_port @215
         ap_open_stderr @216
  +        ap_set_pipe_timeout   @217
   
  
  
  
  1.6       +4 -0      apache-2.0/src/lib/apr/file_io/win32/pipe.c
  
  Index: pipe.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/file_io/win32/pipe.c,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- pipe.c	2000/02/18 21:50:32	1.5
  +++ pipe.c	2000/03/06 18:12:06	1.6
  @@ -63,6 +63,10 @@
   #include <sys/types.h>
   #include <sys/stat.h>
   
  +ap_status_t ap_set_pipe_timeout(struct file_t *thepipe, ap_int32_t timeout)
  +{
  +    return APR_ENOTIMPL;
  +}
   ap_status_t ap_create_pipe(struct file_t **in, struct file_t **out, ap_context_t *cont)
   {
       SECURITY_ATTRIBUTES sa;