-
Notifications
You must be signed in to change notification settings - Fork 36
/
gateway_client_test.c
101 lines (89 loc) · 3.5 KB
/
gateway_client_test.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*
* Copyright (c) 2022-2024 Huawei Cloud Computing Technology Co., Ltd. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its contributors may be used
* to endorse or promote products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* Gateway subdevice simulation implementation
* Run "make gateway_demo" command in the Linux environment to compile the gateway demo.
* You need to start "gateway_server_test" for your subdevices to connect.
* 1. Input: ID:${node_id} - register the gateway.
* 2. Entering a value of the int type will trigger gateway subdevice data reporting, such as 12.
* 3. Input: exit - The subdevice goes offline.
* 4. Input: del - delete the subdevice.
*/
#include <netdb.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include "log_util.h"
#define SERVER_IP "127.0.0.1"
#define SERVER_PORT 15622
#define MAX_MESSAGE_BUF_LEN 30
int main(void)
{
struct sockaddr_in serverAddr;
int clientSocket;
char sendbuf[MAX_MESSAGE_BUF_LEN];
char recvbuf[MAX_MESSAGE_BUF_LEN];
int iDataNum;
if ((clientSocket = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
perror("socket");
return -1;
}
serverAddr.sin_family = AF_INET;
serverAddr.sin_port = htons(SERVER_PORT);
serverAddr.sin_addr.s_addr = inet_addr(SERVER_IP);
if (connect(clientSocket, (struct sockaddr *)&serverAddr, sizeof(serverAddr)) < 0) {
perror("connect");
return -1;
}
while (1) {
printf("Input the messages you want to send, input \"quit\" to exit:");
if (scanf_s("%s", sendbuf, MAX_MESSAGE_BUF_LEN) == -1) {
printf("get messages error");
break;
}
printf("\n");
send(clientSocket, sendbuf, strlen(sendbuf), 0);
if (strcmp(sendbuf, "quit") == 0) {
break;
}
printf("Receive messages:");
recvbuf[0] = '\0';
iDataNum = recv(clientSocket, recvbuf, MAX_MESSAGE_BUF_LEN, 0);
if (iDataNum > 0) {
recvbuf[iDataNum] = '\0';
printf("%s\n", recvbuf);
}
}
close(clientSocket);
return 0;
}