-
Notifications
You must be signed in to change notification settings - Fork 0
/
lantronix.c
76 lines (60 loc) · 1.53 KB
/
lantronix.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
#include <netdb.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>
void lantronix_reset()
{
int sockfd, connfd, x;
char serialfix=128;
char buff[500];
struct sockaddr_in servaddr, cli;
// socket create and varification
sockfd = socket(AF_INET, SOCK_STREAM, 0);
if (sockfd == -1)
{
printf("socket creation failed...\n");
exit(0);
}
else
printf("Socket successfully created..\n");
bzero(&servaddr, sizeof(servaddr));
// assign IP, PORT
servaddr.sin_family = AF_INET;
servaddr.sin_addr.s_addr = inet_addr("10.130.133.24");
servaddr.sin_port = htons(9999);
// connect the client socket to server socket
if (connect(sockfd, (struct sockaddr*)&servaddr, sizeof(servaddr)) != 0)
{
printf("connection with the server failed...\n");
exit(0);
}
else
printf("connected to the server..\n");
//first wait for the connection message
sleep(2);
memset(buff, 0, sizeof(buff));
x=recv(sockfd, buff, 500, MSG_DONTWAIT);
//printf("x=%i chars\n", x);
//printf("buff=%s\n", buff);
//send a carriage return to enter the menu
//then wait for the menu items
write(sockfd, "\r", 1);
sleep(2);
memset(buff, 0, sizeof(buff));
x=recv(sockfd, buff, sizeof(buff), MSG_DONTWAIT);
//printf("x=%i chars\n", x);
//printf("buff=%s\n", buff);
//select option 9 "save and exit", and
//send another carriage return
write(sockfd, "9\r", 2);
close(sockfd);
sleep(5);
}
void main()
{
lantronix_reset();
}