blob: 6ea50eb22d5fa555e01dc39304c7b3d7dfdd2c51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#include "music.h"
#include "httpd.h"
#include <glib.h>
#include <glib-object.h>
#include <signal.h>
GMainLoop *main_loop;
static void sig_handler(int sig) {
g_debug("caught signal %d", sig);
g_main_loop_quit(main_loop);
}
int main(int argc, char **argv) {
g_type_init();
music_init(argv[1]);
music_scan_root();
httpd_start();
signal(SIGINT, sig_handler);
main_loop = g_main_loop_new(NULL, FALSE);
g_main_loop_run(main_loop);
g_main_loop_unref(main_loop);
httpd_stop();
music_free();
return 0;
}
|