Browse code

Skeleton server (shamelessly ripped from newslettersan)

Dario Rodriguez authored on 25/04/2015 09:55:24
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,25 @@
1
+/*
2
+ * recremote.h
3
+ *
4
+ * Web frontend to control recording with ALSA
5
+ *
6
+ * Header file
7
+ *
8
+ * Author: Dario Rodriguez dario@softhome.net
9
+ * This program is licensed under the terms of the Affero GPL v1+
10
+ */
11
+
12
+#ifndef RECREMOTE_H
13
+#define RECREMOTE_H
14
+
15
+#include "socklib.h"
16
+#include "webkernel.h"
17
+#include "rec_config.h"
18
+
19
+typedef struct recremote {
20
+	sselect *ssel;
21
+	wk *web;
22
+	recconfig *config;
23
+} recremote;
24
+
25
+#endif