summaryrefslogtreecommitdiffstats
path: root/03_exercise/srv/server.c
blob: 972b11f89ceb7cb319f40141e24c912078255ba3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

#define PORT 9000

int main()
{
	while (1)
	{
		printf("[srv]: idle\n");
		sleep(2);
	}
	
	return 0;
}