-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontroller.c
77 lines (52 loc) · 2.23 KB
/
controller.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
* copyright (c) 2020 2021 2025 Thomas Paillet <[email protected]>
* This file is part of PTZ-Memory.
* PTZ-Memory 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 3 of the License, or
* (at your option) any later version.
* PTZ-Memory 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 PTZ-Memory. If not, see <https://www.gnu.org/licenses/>.
*/
#include "controller.h"
#include "protocol.h"
gboolean controller_is_used = FALSE;
char controller_ip_address[16] = {'\0'};
gboolean controller_ip_address_is_valid = FALSE;
struct sockaddr_in controller_address;
extern char *http_cam_cmd, *http_cam_ptz_header;
extern char *http_header_1, *http_header_2, *http_header_3;
char controller_cmd[260];
int controller_cmd_size;
gpointer controller_switch_ptz (ptz_thread_t *ptz_thread)
{
int port_number;
SOCKET sock;
port_number = ptz_thread->ptz_ptr->index + 1;
if (port_number == 10) {
controller_cmd[28] = '1';
controller_cmd[29] = '0';
} else if (port_number <= 9) {
controller_cmd[28] = '0';
controller_cmd[29] = '0' + port_number;
} else {
g_idle_add ((GSourceFunc)free_ptz_thread, ptz_thread);
return NULL;
}
sock = socket (AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (connect (sock, (struct sockaddr *) &controller_address, sizeof (struct sockaddr_in)) == 0) send (sock, controller_cmd, controller_cmd_size, 0);
closesocket (sock);
g_idle_add ((GSourceFunc)free_ptz_thread, ptz_thread);
return NULL;
}
void init_controller (void)
{
memset (&controller_address, 0, sizeof (struct sockaddr_in));
controller_address.sin_family = AF_INET;
controller_address.sin_port = htons (80);
controller_cmd_size = sprintf (controller_cmd, "%sXPT:00%s%s%s%s%s%s", http_cam_cmd, http_cam_ptz_header, http_header_1, my_ip_address, http_header_2, my_ip_address, http_header_3);
}