Remove page breaks.
robs [Tue, 27 Mar 2001 14:03:20 +0000 (14:03 +0000)]
libfcgi/os_unix.c
libfcgi/os_win32.c

index d115f3a..a58c1f2 100755 (executable)
@@ -17,7 +17,7 @@
  */
 
 #ifndef lint
-static const char rcsid[] = "$Id: os_unix.c,v 1.23 2001/03/27 13:21:26 robs Exp $";
+static const char rcsid[] = "$Id: os_unix.c,v 1.24 2001/03/27 14:03:20 robs Exp $";
 #endif /* not lint */
 
 #include "fcgi_config.h"
@@ -105,7 +105,6 @@ static fd_set writeFdSetPost;
 static int numWrPosted = 0;
 static int volatile maxFd = -1;
 
-\f
 /*
  *--------------------------------------------------------------
  *
@@ -146,7 +145,6 @@ int OS_LibInit(int stdioFds[3])
     return 0;
 }
 
-\f
 /*
  *--------------------------------------------------------------
  *
@@ -173,7 +171,6 @@ void OS_LibShutdown()
     return;
 }
 
-\f
 /*
  *----------------------------------------------------------------------
  *
@@ -220,13 +217,11 @@ static int OS_BuildSockAddrUn(const char *bindPath,
 #endif
     return 0;
 }
-\f
 union SockAddrUnion {
     struct  sockaddr_un        unixVariant;
     struct  sockaddr_in        inetVariant;
 };
 
-\f
 /*
  * OS_CreateLocalIpcFd --
  *
@@ -312,7 +307,6 @@ int OS_CreateLocalIpcFd(const char *bindPath, int backlog)
     return listenSock;
 }
 
-\f
 /*
  *----------------------------------------------------------------------
  *
@@ -386,7 +380,6 @@ int OS_FcgiConnect(char *bindPath)
     }
 }
 
-\f
 /*
  *--------------------------------------------------------------
  *
@@ -407,7 +400,7 @@ int OS_Read(int fd, char * buf, size_t len)
 {
     return(read(fd, buf, len));
 }
-\f
+
 /*
  *--------------------------------------------------------------
  *
@@ -429,7 +422,6 @@ int OS_Write(int fd, char * buf, size_t len)
     return(write(fd, buf, len));
 }
 
-\f
 /*
  *----------------------------------------------------------------------
  *
@@ -495,7 +487,6 @@ int OS_SpawnChild(char *appPath, int listenFd)
     return 0;
 }
 
-\f
 /*
  *--------------------------------------------------------------
  *
@@ -552,7 +543,6 @@ static void GrowAsyncTable(void)
 
 }
 
-\f
 /*
  *--------------------------------------------------------------
  *
@@ -603,7 +593,7 @@ int OS_AsyncRead(int fd, int offset, void *buf, int len,
     FD_SET(fd, &readFdSet);
     return 0;
 }
-\f
+
 /*
  *--------------------------------------------------------------
  *
@@ -652,7 +642,7 @@ int OS_AsyncWrite(int fd, int offset, void *buf, int len,
     FD_SET(fd, &writeFdSet);
     return 0;
 }
-\f
+
 /*
  *--------------------------------------------------------------
  *
@@ -696,7 +686,7 @@ int OS_Close(int fd)
     }
     return close(fd);
 }
-\f
+
 /*
  *--------------------------------------------------------------
  *
@@ -721,7 +711,6 @@ int OS_CloseRead(int fd)
     return shutdown(fd, 0);
 }
 
-\f
 /*
  *--------------------------------------------------------------
  *
@@ -852,7 +841,6 @@ char * str_dup(const char * str)
     return sdup;
 }
 
-\f
 /*
  *----------------------------------------------------------------------
  *
@@ -892,7 +880,6 @@ static int ClientAddrOK(struct sockaddr_in *saPtr, const char *clientList)
     return result;
 }
 
-\f
 /*
  *----------------------------------------------------------------------
  *
@@ -931,7 +918,7 @@ static int AcquireLock(int sock, int fail_on_intr)
     return 0;
 #endif
 }
-\f
+
 /*
  *----------------------------------------------------------------------
  *
@@ -970,7 +957,6 @@ static int ReleaseLock(int sock)
 #endif
 }
 
-\f
 /**********************************************************************
  * Determine if the errno resulting from a failed accept() warrants a
  * retry or exit().  Based on Apache's http_main.c accept() handling
@@ -1126,7 +1112,7 @@ int OS_Accept(int listen_sock, int fail_on_intr, const char *webServerAddrs)
 
     return (socket);
 }
-\f
+
 /*
  *----------------------------------------------------------------------
  *
@@ -1147,7 +1133,6 @@ int OS_IpcClose(int ipcFd)
     return OS_Close(ipcFd);
 }
 
-\f
 /*
  *----------------------------------------------------------------------
  *
@@ -1184,7 +1169,7 @@ int OS_IsFcgi(int sock)
         return FALSE;
     }
 }
-\f
+
 /*
  *----------------------------------------------------------------------
  *
index 0b84786..6414d67 100755 (executable)
@@ -17,7 +17,7 @@
  *  significantly more enjoyable.)
  */
 #ifndef lint
-static const char rcsid[] = "$Id: os_win32.c,v 1.10 2001/03/27 04:13:12 robs Exp $";
+static const char rcsid[] = "$Id: os_win32.c,v 1.11 2001/03/27 14:03:21 robs Exp $";
 #endif /* not lint */
 
 #include "fcgi_config.h"
@@ -121,7 +121,6 @@ static HANDLE hListen = INVALID_HANDLE_VALUE;
 static OVERLAPPED listenOverlapped;
 static BOOLEAN libInitialized = FALSE;
 
-\f
 /*
  *--------------------------------------------------------------
  *
@@ -204,7 +203,7 @@ static int Win32NewDescriptor(FILE_TYPE type, int fd, int desiredFd)
 
     return index;
 }
-\f
+
 /*
  *--------------------------------------------------------------
  *
@@ -542,7 +541,6 @@ int OS_LibInit(int stdioFds[3])
     return 0;
 }
 
-\f
 /*
  *--------------------------------------------------------------
  *
@@ -578,7 +576,6 @@ void OS_LibShutdown()
     return;
 }
 
-\f
 /*
  *--------------------------------------------------------------
  *
@@ -645,7 +642,6 @@ static short getPort(const char * bindPath)
     return port;
 }
 
-\f
 /*
  * OS_CreateLocalIpcFd --
  *
@@ -779,7 +775,6 @@ int OS_CreateLocalIpcFd(const char *bindPath, int backlog)
     return pseudoFd;
 }
 
-\f
 /*
  *----------------------------------------------------------------------
  *
@@ -907,7 +902,6 @@ int OS_FcgiConnect(char *bindPath)
     return pseudoFd;    
 }
 
-\f
 /*
  *--------------------------------------------------------------
  *
@@ -967,7 +961,7 @@ int OS_Read(int fd, char * buf, size_t len)
                return -1;
     }
 }
-\f
+
 /*
  *--------------------------------------------------------------
  *
@@ -1029,7 +1023,6 @@ int OS_Write(int fd, char * buf, size_t len)
     }
 }
 
-\f
 /*
  *----------------------------------------------------------------------
  *
@@ -1109,7 +1102,6 @@ int OS_SpawnChild(char *execPath, int listenFd)
     }
 }
 
-\f
 /*
  *--------------------------------------------------------------
  *
@@ -1149,7 +1141,6 @@ int OS_AsyncReadStdin(void *buf, int len, OS_AsyncProc procPtr,
     return 0;
 }
 
-\f
 /*
  *--------------------------------------------------------------
  *
@@ -1226,7 +1217,7 @@ int OS_AsyncRead(int fd, int offset, void *buf, int len,
     }
     return 0;
 }
-\f
+
 /*
  *--------------------------------------------------------------
  *
@@ -1328,7 +1319,6 @@ int OS_AsyncWrite(int fd, int offset, void *buf, int len,
     return 0;
 }
 
-\f
 /*
  *--------------------------------------------------------------
  *
@@ -1384,7 +1374,7 @@ int OS_Close(int fd)
     Win32FreeDescriptor(fd);
     return ret;
 }
-\f
+
 /*
  *--------------------------------------------------------------
  *
@@ -1414,7 +1404,7 @@ int OS_CloseRead(int fd)
        ret = -1;
     return ret;
 }
-\f
+
 /*
  *--------------------------------------------------------------
  *
@@ -1522,7 +1512,6 @@ static int CALLBACK isAddrOK(LPWSABUF  lpCallerId,
     }
 }
     
-\f
 /*
  *----------------------------------------------------------------------
  *
@@ -1657,7 +1646,7 @@ int OS_Accept(int listen_sock, int fail_on_intr, const char *webServerAddrs)
            
     return ipcFd;
 }
-\f
+
 /*
  *----------------------------------------------------------------------
  *
@@ -1713,7 +1702,6 @@ int OS_IpcClose(int ipcFd)
     }
 }
 
-\f
 /*
  *----------------------------------------------------------------------
  *
@@ -1739,7 +1727,6 @@ int OS_IsFcgi(int sock)
     }
 }
 
-\f
 /*
  *----------------------------------------------------------------------
  *