This commit is contained in:
seajee
2025-08-03 00:42:36 +02:00
parent c3c29feadf
commit fe2809ce58
10 changed files with 11 additions and 11 deletions

View File

@@ -8,7 +8,7 @@ int main(void)
{
bool err = false;
Sock *s = sock(SOCK_IPV6, SOCK_TCP);
Sock *s = sock_create(SOCK_IPV6, SOCK_TCP);
if (s == NULL) { err = "create"; goto defer; }
SockAddr addr = sock_addr("::1", 6969);