diff options
| author | Garrett D'Amore <garrett@damore.org> | 2017-10-06 18:25:56 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2017-10-09 17:12:31 -0700 |
| commit | f14cdb705cc11f39a4702c28f22007ffaaf7c9e1 (patch) | |
| tree | 8ca8b7b08e0ffc14a6c9283483bf1170fee31cd0 /src/CMakeLists.txt | |
| parent | 52d37858451ad23f077294fc78b1a3f56255c32f (diff) | |
| download | nng-f14cdb705cc11f39a4702c28f22007ffaaf7c9e1.tar.gz nng-f14cdb705cc11f39a4702c28f22007ffaaf7c9e1.tar.bz2 nng-f14cdb705cc11f39a4702c28f22007ffaaf7c9e1.zip | |
New platform API for storage methods.
This includes converting the ZeroTier transport to use these.
The new API supports file creation, retrieval, and deletion. It
also supports directory methods for traversal, creation, and
deletion. It also has a few methods to obtain well-known directories
like $TMPDIR and $HOME.
A rich test suite for this functionality is added as well.
Diffstat (limited to 'src/CMakeLists.txt')
| -rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 2f2f54ff..c0080fe6 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -113,6 +113,7 @@ if (NNG_PLATFORM_POSIX) platform/posix/posix_clock.c platform/posix/posix_debug.c platform/posix/posix_epdesc.c + platform/posix/posix_file.c platform/posix/posix_ipc.c platform/posix/posix_pipe.c platform/posix/posix_pipedesc.c @@ -131,6 +132,7 @@ if (NNG_PLATFORM_WINDOWS) platform/windows/win_impl.h platform/windows/win_clock.c platform/windows/win_debug.c + platform/windows/win_file.c platform/windows/win_iocp.c platform/windows/win_ipc.c platform/windows/win_pipe.c |
