diff options
| author | Nakidai <nakidai@disroot.org> | 2024-09-27 21:36:39 +0300 |
|---|---|---|
| committer | Nakidai <nakidai@disroot.org> | 2024-09-27 21:36:39 +0300 |
| commit | ffa61b7b6930fe4a08bb53ace07c2ee40a9cef43 (patch) | |
| tree | 6278355a266e71657fc8649a7017cdf6bb3bf6ed | |
| parent | 91c498a45c36e1be548a00f199479abdf6cc60fb (diff) | |
| download | cptc-ffa61b7b6930fe4a08bb53ace07c2ee40a9cef43.tar.gz cptc-ffa61b7b6930fe4a08bb53ace07c2ee40a9cef43.zip | |
Add TODO to cptc.c
| -rw-r--r-- | cptc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cptc.c b/cptc.c index 485c39f..0396b71 100644 --- a/cptc.c +++ b/cptc.c @@ -56,6 +56,9 @@ void CPTC(const char *ip, in_port_t port) } printf("Connection from %s:%u!\n", inet_ntoa(peer.sin_addr), peer.sin_port); + /* + * TODO: Make it multithreaded + */ CPTC_requestHandler(peerfd); close(peerfd); } |