🏗️」 wip: wtf is going on

This commit is contained in:
2025-09-18 21:32:46 +02:00
parent 7b15583813
commit 4e41bf3aa1
8 changed files with 105 additions and 0 deletions

22
3 Normal file
View File

@ -0,0 +1,22 @@
#include <sys/select.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/socket.h>
#include <netinet/in.h>
char recv_buf[3000];
char send_buf[3000];
int maxfd;
int lastid = 0;
int sockfd;
int main(int ac, char **av) {
sockfd = socket(AF_INET, SOCK_STREAM, 0);
while (1) {
}
}