mirror of
https://github.com/lxsang/antd-tunnel-plugin
synced 2025-04-05 16:16:44 +02:00
update to support new version of httpd
This commit is contained in:
parent
8a4763117e
commit
f569ebc505
10
tunnel.c
10
tunnel.c
@ -34,7 +34,7 @@
|
|||||||
#define PING_INTERVAL 10u // 10s
|
#define PING_INTERVAL 10u // 10s
|
||||||
#define PROCESS_TIMEOUT 30000u //30 ms
|
#define PROCESS_TIMEOUT 30000u //30 ms
|
||||||
|
|
||||||
#define MAX_CHANNEL_PATH (sizeof(__plugin__.tmpdir) + strlen(SOCK_DIR_NAME) + strlen(HOT_LINE_SOCKET) + 2)
|
#define MAX_CHANNEL_PATH 512
|
||||||
|
|
||||||
#define MSG_MAGIC_BEGIN (uint16_t)0x414e //AN
|
#define MSG_MAGIC_BEGIN (uint16_t)0x414e //AN
|
||||||
#define MSG_MAGIC_END (uint16_t)0x5444 //TD
|
#define MSG_MAGIC_END (uint16_t)0x5444 //TD
|
||||||
@ -124,7 +124,7 @@ static int mk_socket(const char *name, char *path)
|
|||||||
address.sun_family = AF_UNIX;
|
address.sun_family = AF_UNIX;
|
||||||
// create the socket
|
// create the socket
|
||||||
(void)snprintf(path, MAX_CHANNEL_PATH, "%s/%s/", __plugin__.tmpdir, SOCK_DIR_NAME);
|
(void)snprintf(path, MAX_CHANNEL_PATH, "%s/%s/", __plugin__.tmpdir, SOCK_DIR_NAME);
|
||||||
|
LOG("Socket path is: %s, name %s", path, name);
|
||||||
if (!_exist(path))
|
if (!_exist(path))
|
||||||
{
|
{
|
||||||
LOG("Socket dir does not exist, create it: %s", path);
|
LOG("Socket dir does not exist, create it: %s", path);
|
||||||
@ -543,7 +543,7 @@ static void update_keychain(int listen_fd)
|
|||||||
}
|
}
|
||||||
static void monitor_hotline(int listen_fd)
|
static void monitor_hotline(int listen_fd)
|
||||||
{
|
{
|
||||||
char buff[MAX_CHANNEL_NAME + 1];
|
char buff[MAX_CHANNEL_NAME];
|
||||||
antd_tunnel_msg_t msg;
|
antd_tunnel_msg_t msg;
|
||||||
int fd;
|
int fd;
|
||||||
fd = accept(listen_fd, NULL, NULL);
|
fd = accept(listen_fd, NULL, NULL);
|
||||||
@ -819,13 +819,13 @@ void destroy()
|
|||||||
if (g_tunnel.hotline != -1)
|
if (g_tunnel.hotline != -1)
|
||||||
{
|
{
|
||||||
(void)close(g_tunnel.hotline);
|
(void)close(g_tunnel.hotline);
|
||||||
(void)snprintf(path, BUFFLEN, "%s/%s/%s", __plugin__.tmpdir, SOCK_DIR_NAME, HOT_LINE_SOCKET);
|
(void)snprintf(path, MAX_CHANNEL_PATH, "%s/%s/%s", __plugin__.tmpdir, SOCK_DIR_NAME, HOT_LINE_SOCKET);
|
||||||
(void)unlink(path);
|
(void)unlink(path);
|
||||||
}
|
}
|
||||||
if (g_tunnel.key_fd != -1)
|
if (g_tunnel.key_fd != -1)
|
||||||
{
|
{
|
||||||
(void)close(g_tunnel.key_fd);
|
(void)close(g_tunnel.key_fd);
|
||||||
(void)snprintf(path, BUFFLEN, "%s/%s/%s", __plugin__.tmpdir, SOCK_DIR_NAME, KEY_CHAIN_FIFO);
|
(void)snprintf(path, MAX_CHANNEL_PATH, "%s/%s/%s", __plugin__.tmpdir, SOCK_DIR_NAME, KEY_CHAIN_FIFO);
|
||||||
(void)unlink(path);
|
(void)unlink(path);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user