summaryrefslogtreecommitdiff
path: root/include/apr_file_info.h
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2002-12-14 05:52:56 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2002-12-14 05:52:56 +0000
commit1e78b228adaebafe3bc12149d4d4c142e50bbd38 (patch)
treefe01c773212166e81a3d686443a766b8e1ebee27 /include/apr_file_info.h
parent2e708d7e28376c458c52fd6d9d49d90b33217c6b (diff)
downloadlibapr-1e78b228adaebafe3bc12149d4d4c142e50bbd38.tar.gz
Introduce an APR_UNKFILE distinct from APR_NOFILE (which was misleading).
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64167 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_file_info.h')
-rw-r--r--include/apr_file_info.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/apr_file_info.h b/include/apr_file_info.h
index 186b99181..b696b98a1 100644
--- a/include/apr_file_info.h
+++ b/include/apr_file_info.h
@@ -86,7 +86,8 @@ typedef enum {
APR_BLK, /**< a block device */
APR_PIPE, /**< a FIFO / pipe */
APR_LNK, /**< a symbolic link */
- APR_SOCK /**< a [unix domain] socket */
+ APR_SOCK, /**< a [unix domain] socket */
+ APR_UNKFILE = 127 /**< a file of unknown type */
} apr_filetype_e;
/**