aboutsummaryrefslogtreecommitdiff
path: root/src/server.h
diff options
context:
space:
mode:
authorFranklin Wei <git@fwei.tk>2016-01-15 17:25:16 -0500
committerFranklin Wei <git@fwei.tk>2016-01-15 17:25:16 -0500
commitb8a5c11cbd8a0514754558892d9bbd620345799c (patch)
tree5687d0e98212c7067c5049bd3914045595c75d21 /src/server.h
parentabe9f416501c5354be3ce292b4220000edf021ab (diff)
downloadnetcosm-b8a5c11cbd8a0514754558892d9bbd620345799c.zip
netcosm-b8a5c11cbd8a0514754558892d9bbd620345799c.tar.gz
netcosm-b8a5c11cbd8a0514754558892d9bbd620345799c.tar.bz2
netcosm-b8a5c11cbd8a0514754558892d9bbd620345799c.tar.xz
refactor headers
Diffstat (limited to 'src/server.h')
-rw-r--r--src/server.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/server.h b/src/server.h
new file mode 100644
index 0000000..3117955
--- /dev/null
+++ b/src/server.h
@@ -0,0 +1,47 @@
+/*
+ * NetCosm - a MUD server
+ * Copyright (C) 2016 Franklin Wei
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+/* You should use #pragma once everywhere. */
+#pragma once
+
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <arpa/inet.h>
+
+#include "server_reqs.h"
+#include "room.h"
+
+struct child_data {
+ pid_t pid;
+ int readpipe[2];
+ int outpipe[2];
+
+ int state;
+ room_id room;
+ char *user;
+
+ ev_io *io_watcher;
+ ev_child *sigchld_watcher;
+ struct ev_loop *loop;
+
+ struct in_addr addr;
+};
+
+extern volatile int num_clients;
+extern void *child_map;
+extern bool are_child;