chiark / gitweb /
log: rework logging subsystem to support syslog and kmsg output
[elogind.git] / socket.h
index a8821f64126b71375cffb187854fc8d3ad63a6a1..356341f2a6f1f67794306d7c03b567a2a9471293 100644 (file)
--- a/socket.h
+++ b/socket.h
@@ -3,9 +3,29 @@
 #ifndef foosockethfoo
 #define foosockethfoo
 
+/***
+  This file is part of systemd.
+
+  Copyright 2010 Lennart Poettering
+
+  systemd 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 2 of the License, or
+  (at your option) any later version.
+
+  systemd 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 systemd; If not, see <http://www.gnu.org/licenses/>.
+***/
+
 typedef struct Socket Socket;
 
-#include "name.h"
+#include "manager.h"
+#include "unit.h"
 #include "socket-util.h"
 
 typedef enum SocketState {
@@ -46,6 +66,7 @@ struct SocketPort {
         char *path;
 
         int fd;
+        Watch fd_watch;
 
         LIST_FIELDS(SocketPort, port);
 };
@@ -71,10 +92,20 @@ struct Socket {
         ExecCommand* control_command;
         pid_t control_pid;
 
+        char *bind_to_device;
+        mode_t directory_mode;
+        mode_t socket_mode;
+
         bool failure;
-        int timer_id;
+        Watch timer_watch;
 };
 
-extern const NameVTable socket_vtable;
+/* Called from the service code when collecting fds */
+int socket_collect_fds(Socket *s, int **fds, unsigned *n_fds);
+
+/* Called from the service when it shut down */
+void socket_notify_service_dead(Socket *s);
+
+extern const UnitVTable socket_vtable;
 
 #endif