summaryrefslogtreecommitdiff
path: root/src/core/socket.h
diff options
context:
space:
mode:
authorPawel Szewczyk <p.szewczyk@samsung.com>2015-09-21 16:30:41 +0200
committerPawel Szewczyk <p.szewczyk@samsung.com>2015-09-22 12:01:53 +0200
commit15087cdbd63312f706f21339489daf210ae609d0 (patch)
treed297ec2750f157a503eddb935c2de48e2d996064 /src/core/socket.h
parentac2896bab61bd8cd0b8a8b92f8347e2c11a088b5 (diff)
core: Add list of additional file descriptors to socket port
Some additional files related to single socket may appear in the filesystem and they should be opened and passed to related service. This commit adds optional list of file descriptors, which are dynamically discovered and opened.
Diffstat (limited to 'src/core/socket.h')
-rw-r--r--src/core/socket.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/socket.h b/src/core/socket.h
index fa3ebdafa0..e1046adad4 100644
--- a/src/core/socket.h
+++ b/src/core/socket.h
@@ -81,6 +81,8 @@ typedef struct SocketPort {
SocketType type;
int fd;
+ int *auxiliary_fds;
+ int n_auxiliary_fds;
SocketAddress address;
char *path;