13 lines
211 B
C
13 lines
211 B
C
|
|
|
||
|
|
int main() {
|
||
|
|
int server_fd;
|
||
|
|
int client_fd;
|
||
|
|
char buffer[4096];
|
||
|
|
|
||
|
|
printf("Starting server\n");
|
||
|
|
server_fd = socket(AF_INET(), SOCK_STREAM(), 0);
|
||
|
|
printf("Socket created\n");
|
||
|
|
|
||
|
|
return 0;
|
||
|
|
}
|