1.4.0 Renamed sock_create() to sock()

This commit is contained in:
seajee
2025-04-26 23:21:15 +02:00
parent c5010e17d1
commit 31d7930b78
10 changed files with 40 additions and 39 deletions

View File

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