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

@@ -33,7 +33,7 @@ int main(int argc, char **argv)
address = argv[1];
}
Sock *client = sock(SOCK_IPV4, SOCK_TCP);
Sock *client = sock_create(SOCK_IPV4, SOCK_TCP);
if (client == NULL) {
fprintf(stderr, "ERROR: Could not create socket\n");
return EXIT_FAILURE;