diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2016-10-02 16:30:10 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2016-10-02 16:30:10 -0400 |
commit | b2175be362b0a32d06d98369302d55b226b58ab1 (patch) | |
tree | fed6309efab2967279265a990637c38bffa33cc1 /bftw.h | |
parent | 34fa233c66d6595e168fe114655857f14accfa3a (diff) | |
download | bfs-b2175be362b0a32d06d98369302d55b226b58ab1.tar.xz |
bftw: Add support for some exotic file types, where available.
Diffstat (limited to 'bftw.h')
-rw-r--r-- | bftw.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -27,14 +27,20 @@ enum bftw_typeflag { BFTW_CHR, /** Directory. */ BFTW_DIR, + /** Solaris door. */ + BFTW_DOOR, /** Pipe. */ BFTW_FIFO, /** Symbolic link. */ BFTW_LNK, + /** Solaris event port. */ + BFTW_PORT, /** Regular file. */ BFTW_REG, /** Socket. */ BFTW_SOCK, + /** BSD whiteout. */ + BFTW_WHT, /** An error occurred for this file. */ BFTW_ERROR, }; |