diff options
| author | 2023-12-31 17:29:19 -0500 | |
|---|---|---|
| committer | 2023-12-31 17:29:19 -0500 | |
| commit | 842fed76fdb6762e10d1571255229a80c8505b04 (patch) | |
| tree | a2d46bc3ba63a91cf6ca00d285716a084cd4da8b /include/aki | |
| parent | b0f53d634813af0a038d4faf6fa71d90d9aa0845 (diff) | |
| download | libnaunet-842fed76fdb6762e10d1571255229a80c8505b04.tar.gz libnaunet-842fed76fdb6762e10d1571255229a80c8505b04.tar.bz2 libnaunet-842fed76fdb6762e10d1571255229a80c8505b04.zip | |
Update
- Add aki_poll and aki_fs_event
- Various aki_file improvments
- Add grow mode to aki_packet_pool
- aki_packet_stream_pause/resume -> cork
- Misc fixes and improvments
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'include/aki')
| -rw-r--r-- | include/aki/common.h | 4 | ||||
| -rw-r--r-- | include/aki/event_loop.h | 5 | ||||
| -rw-r--r-- | include/aki/fs_event.h | 3 |
3 files changed, 9 insertions, 3 deletions
diff --git a/include/aki/common.h b/include/aki/common.h index 67ac037..153530d 100644 --- a/include/aki/common.h +++ b/include/aki/common.h @@ -1,8 +1,6 @@ #pragma once #include "../../src/common.h" - -#include "../../src/loop.h" #include "../../src/util/buffer.h" -#include "../../src/util/packet.h" +#include "../../src/util/error.h" #include "../../src/util/timer/timer.h" diff --git a/include/aki/event_loop.h b/include/aki/event_loop.h new file mode 100644 index 0000000..d532d92 --- /dev/null +++ b/include/aki/event_loop.h @@ -0,0 +1,5 @@ +#pragma once + +#include "../../src/loop.h" +#include "../../src/poll.h" +#include "../../src/util/packet.h" diff --git a/include/aki/fs_event.h b/include/aki/fs_event.h new file mode 100644 index 0000000..76db88a --- /dev/null +++ b/include/aki/fs_event.h @@ -0,0 +1,3 @@ +#pragma once + +#include "../src/fs_event.h" |