1 /* Copyright (C) 2009 Pierre-Marc Fournier
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 #include <sys/types.h>
26 #define SOCK_DIR "/tmp/socks"
27 #define UST_SIGNAL SIGIO
29 struct ustcomm_connection
{
30 struct list_head list
;
34 /* ustcomm_server must be shallow-copyable */
35 struct ustcomm_server
{
36 /* the "server" socket for serving the external requests */
40 struct list_head connections
;
44 struct ustcomm_server server
;
48 struct ustcomm_server server
;
51 /* ustcomm_source must be shallow-copyable */
52 struct ustcomm_source
{
57 extern char *strdup_malloc(const char *s
);
59 //int send_message_pid(pid_t pid, const char *msg, char **reply);
60 extern int ustcomm_request_consumer(pid_t pid
, const char *channel
);
62 extern int ustcomm_ustd_recv_message(struct ustcomm_ustd
*ustd
, char **msg
, struct ustcomm_source
*src
, int timeout
);
63 extern int ustcomm_app_recv_message(struct ustcomm_app
*app
, char **msg
, struct ustcomm_source
*src
, int timeout
);
65 extern int ustcomm_init_app(pid_t pid
, struct ustcomm_app
*handle
);
67 extern int ustcomm_init_ustd(struct ustcomm_ustd
*handle
);
69 extern int ustcomm_connect_app(pid_t pid
, struct ustcomm_connection
*conn
);
70 extern int ustcomm_connect_path(const char *path
, struct ustcomm_connection
*conn
, pid_t signalpid
);
71 extern int ustcomm_send_request(struct ustcomm_connection
*conn
, const char *req
, char **reply
);
72 extern int ustcomm_send_reply(struct ustcomm_server
*server
, char *msg
, struct ustcomm_source
*src
);
73 extern int ustcomm_disconnect(struct ustcomm_connection
*conn
);
75 extern int nth_token_is(char *str
, char *token
, int tok_no
);
77 extern char *nth_token(char *str
, int tok_no
);
79 extern int pid_is_online(pid_t
);
81 #endif /* USTCOMM_H */
This page took 0.031827 seconds and 5 git commands to generate.