Subversion Repositories Mokou

Rev

Rev 4 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4 Rev 5
Line 1... Line 1...
1
/* $Id: main.c 4 2024-09-06 09:55:53Z nishi $ */
1
/* $Id: main.c 5 2024-09-07 08:42:09Z nishi $ */
2
 
2
 
3
#include <stdio.h>
3
#include <stdio.h>
4
#include <unistd.h>
4
#include <unistd.h>
5
#include <stdlib.h>
5
#include <stdlib.h>
6
#include <string.h>
6
#include <string.h>
Line 31... Line 31...
31
	}
31
	}
32
	char* log = mk_strcat3("Mokou version ", mk_get_version(), " starting up");
32
	char* log = mk_strcat3("Mokou version ", mk_get_version(), " starting up");
33
	mk_log(log);
33
	mk_log(log);
34
	free(log);
34
	free(log);
35
	mk_service_scan();
35
	mk_service_scan();
-
 
36
	mk_start_services();
-
 
37
	mk_log("Mokou is up, creating the server socket");
36
}
38
}