Mercurial
diff seobeo/os/s_macos_edge.c @ 66:a0f0ad5e42eb
[Misc] taking out capital P stuff.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Wed, 24 Dec 2025 06:34:19 -0800 |
| parents | ecb6ee6a22c3 |
| children | 75de5903355c |
line wrap: on
line diff
--- a/seobeo/os/s_macos_edge.c Wed Dec 24 06:22:59 2025 -0800 +++ b/seobeo/os/s_macos_edge.c Wed Dec 24 06:34:19 2025 -0800 @@ -34,12 +34,12 @@ for (int i = 0; i < ne; i++) { - Seobeo_PHandle h = evlist[i].udata; + Seobeo_Handle *h = evlist[i].udata; if (h == args->srv) { // Accept new connections in a loop (for edge-triggered behavior) while (1) { - Seobeo_PHandle cli = Seobeo_Stream_Handle_Server_Accept(args->srv); + Seobeo_Handle *cli = Seobeo_Stream_Handle_Server_Accept(args->srv); if (!cli) break; struct kevent client_kev = { @@ -70,7 +70,7 @@ } void Seobeo_Web_Edge( - Seobeo_PHandle p_server_handle, + Seobeo_Handle *p_server_handle, int thread_count, Dowa_HashMap *p_html_cache) {