Mercurial
diff seobeo/seobeo.h @ 5:3e12bf044589
Fixed Dowa hashmap to recursively add files into memory.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Sat, 27 Sep 2025 16:23:04 -0700 |
| parents | 0b3b4f5887bb |
| children | 1e61008b9980 |
line wrap: on
line diff
--- a/seobeo/seobeo.h Fri Sep 26 15:14:46 2025 -0700 +++ b/seobeo/seobeo.h Sat Sep 27 16:23:04 2025 -0700 @@ -43,16 +43,17 @@ } Sebeo_Handle, *Seobeo_PHandle; -// --- Internal? --- // +// --- Socket, IP related --- // extern int Seobeo_CreateSocket(int32 stream, const char *host, const char* port, int32 backlog); extern void *Seobeo_GetIP4OrIP6(struct sockaddr *sa); // --- TCP --- // extern Seobeo_PHandle Seobeo_Stream_Handle_Create(const char *host, const char* port); extern Seobeo_PHandle Seobeo_Stream_Handle_Accept(Seobeo_PHandle server_h); + +// --- Helper functions --- // extern void Seobeo_Handle_Destroy(Seobeo_PHandle h); extern int Seobeo_Handle_Flush(Seobeo_PHandle h); extern int Seobeo_Handle_QueueData(Seobeo_PHandle h, const uint8_t *data, uint32_t data_size); - #endif