ust: change communication socket for STREAM
[ust.git] / libustcomm / ustcomm.h
CommitLineData
f9e5ce61
PMF
1#ifndef USTCOMM_H
2#define USTCOMM_H
3
4#include <sys/types.h>
b02e31e5 5#include <sys/un.h>
f9e5ce61 6
aca1ad90
PMF
7#include "kcompat.h"
8
9struct ustcomm_connection {
10 struct list_head list;
11 int fd;
12};
13
d0b5f2b9 14struct ustcomm_app {
b0540e11 15 /* the "server" socket for serving the external requests */
aca1ad90 16 int listen_fd;
d0b5f2b9 17 char *socketpath;
aca1ad90
PMF
18
19 struct list_head connections;
d0b5f2b9
PMF
20};
21
22struct ustcomm_ustd {
b0540e11 23 /* the "server" socket for serving the external requests */
aca1ad90 24 int listen_fd;
d0b5f2b9 25 char *socketpath;
aca1ad90
PMF
26
27 struct list_head connections;
d0b5f2b9
PMF
28};
29
b02e31e5
PMF
30struct ustcomm_source {
31 struct sockaddr_un addr;
32};
33
d0b5f2b9
PMF
34int send_message(pid_t pid, const char *msg, char **reply);
35
b02e31e5
PMF
36int ustcomm_ustd_recv_message(struct ustcomm_ustd *ustd, char **msg, struct ustcomm_source *src);
37int ustcomm_app_recv_message(struct ustcomm_app *app, char **msg, struct ustcomm_source *src);
3847c3ba 38
d0b5f2b9
PMF
39int ustcomm_init_app(pid_t pid, struct ustcomm_app *handle);
40
41int ustcomm_init_ustd(struct ustcomm_ustd *handle);
f9e5ce61 42
b02e31e5
PMF
43int nth_token_is(char *str, char *token, int tok_no);
44
45char *nth_token(char *str, int tok_no);
46
f9e5ce61 47#endif /* USTCOMM_H */
This page took 0.023918 seconds and 4 git commands to generate.