~ubuntu-branches/debian/sid/apr/sid

« back to all changes in this revision

Viewing changes to include/apr_file_info.h

  • Committer: Package Import Robot
  • Author(s): Stefan Fritsch
  • Date: 2013-12-30 16:37:54 UTC
  • mfrom: (1.1.13)
  • Revision ID: package-import@ubuntu.com-20131230163754-mn1794cg19jswqqj
Tags: 1.5.0-1
* New upstream version
* Pull changes from upstream 1.5.x branch up to r1552863 to fix problems
  on the FreeBSD 10 kernel with accept4() and non-blocking sockets.

Show diffs side-by-side

added added

removed removed

Lines of Context:
316
316
 * @param filepath the pathname to parse for its root component
317
317
 * @param flags the desired rules to apply, from
318
318
 * <PRE>
319
 
 *      APR_FILEPATH_NATIVE    Use native path seperators (e.g. '\' on Win32)
 
319
 *      APR_FILEPATH_NATIVE    Use native path separators (e.g. '\' on Win32)
320
320
 *      APR_FILEPATH_TRUENAME  Tests that the root exists, and makes it proper
321
321
 * </PRE>
322
322
 * @param p the pool to allocate the new path string from
328
328
 * test for the validity of that root (e.g., that a drive d:/ or network 
329
329
 * share //machine/foovol/). 
330
330
 * The function returns APR_ERELATIVE if filepath isn't rooted (an
331
 
 * error), APR_EINCOMPLETE if the root path is ambigious (but potentially
 
331
 * error), APR_EINCOMPLETE if the root path is ambiguous (but potentially
332
332
 * legitimate, e.g. "/" on Windows is incomplete because it doesn't specify
333
333
 * the drive letter), or APR_EBADPATH if the root is simply invalid.
334
334
 * APR_SUCCESS is returned if filepath is an absolute path.
362
362
 * @param pathelts the returned components of the search path
363
363
 * @param liststr the search path (e.g., <tt>getenv("PATH")</tt>)
364
364
 * @param p the pool to allocate the array and path components from
365
 
 * @remark empty path componenta do not become part of @a pathelts.
 
365
 * @remark empty path components do not become part of @a pathelts.
366
366
 * @remark the path separator in @a liststr is system specific;
367
367
 * e.g., ':' on Unix, ';' on Windows, etc.
368
368
 */