Return-Path: Delivered-To: apache-cvs-archive@hyperreal.org Received: (qmail 7343 invoked by uid 6000); 25 Jan 1999 16:30:45 -0000 Received: (qmail 7332 invoked by alias); 25 Jan 1999 16:30:42 -0000 Delivered-To: apache-apr-cvs@hyperreal.org Received: (qmail 7330 invoked by uid 161); 25 Jan 1999 16:30:41 -0000 Date: 25 Jan 1999 16:30:41 -0000 Message-ID: <19990125163041.7329.qmail@hyperreal.org> From: coar@hyperreal.org To: apache-apr-cvs@hyperreal.org Subject: cvs commit: apache-apr/docs apr-function.txt Sender: apache-cvs-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org coar 99/01/25 08:30:40 Modified: docs apr-function.txt Log: Add a couple of missed functions.. Submitted by: Ryan Bloom Reviewed by: Ken Coar Revision Changes Path 1.5 +14 -5 apache-apr/docs/apr-function.txt Index: apr-function.txt =================================================================== RCS file: /home/cvs/apache-apr/docs/apr-function.txt,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- apr-function.txt 1999/01/22 21:11:48 1.4 +++ apr-function.txt 1999/01/25 16:30:40 1.5 @@ -120,11 +120,6 @@ Close the specified file descriptor Arguments: arg 1) file descriptor of file to be closed. - APRStatus apr_opendir(char *, APRDir *) - Opens the specified directory stream. - Arguments: - arg 1) path of the directory to be opened. - arg 2) abstracted directory descriptor structure. APRStatus apr_read(APRFile, void *, APRUInt64, APRUInt64 *) Read n bytes from file and store in buffer. Arguments: @@ -168,6 +163,20 @@ Arguments: arg 1) path to file arg 3) Which access permissions to check for. + APRStatus apr_opendir(char *, APRDir *) + Opens the specified directory stream. + Arguments: + arg 1) path of the directory to be opened. + arg 2) abstracted directory descriptor structure. + APRStatus apr_closedir(APRDir *) + Opens the specified directory stream. + Arguments: + arg 1) abstracted directory descriptor structure to be closed. + APRStatus apr_readdir(APRDir *, APRDirent *) + Retrieve the next directory entry from the specified directory. + Arguments: + arg 1) Abstracted directory descriptor to read from. + arg 2) the next directory entry. ---------------------------Network I/O APRStatus apr_send(APRSocket, const void *, APRUInt64, APRUInt64 *)