- 论坛徽章:
- 0
|
//客户端程序
typedef struct
{
u_char begin;
u_short len;
u_short count;
u_char type;
u_char spread1;
long spread2;
}HEAD;
int udp_send(int fd, char *msg, int len, struct sockaddr *to, int tolen)
{
int n;
n = sendto(fd, msg, len, 0, to, tolen);
if(n < 0)
{
perror("send error");
exit(2);
}
return n;
}
//封装数据函数
void AnalyserRegedit(char *buf, struct in_addr ip)
{
char *p;
HEAD head;
u_short len;
u_char key, end;
u_char *e;
struct in_addr *l_ip;
head.begin = 0x10;
head.type = 0x04;
head.count = 0x01;
head.len = 0x0F;
key = 0x04;
end = 0x11;
printf("longip:%u",ip);
printf("head.begin:%x",head.begin);
memcpy(buf, (void *)&head, sizeof(HEAD));
memcpy(buf+sizeof(HEAD),(void *)&key,sizeof(u_char));
memcpy(buf+sizeof(HEAD)+sizeof(u_char),(void *)&ip,sizeof(struct in_addr));
memcpy(buf+sizeof(HEAD)+sizeof(u_char)+sizeof(struct in_addr),(void *)&end,sizeof(u_char));
l_ip = (struct in_addr *)(buf + sizeof(HEAD) + sizeof(u_char));
printf("longip:%u, charip:%s\n",*l_ip, inet_ntoa(*l_ip));
e = (u_char *)(buf + sizeof(HEAD) + sizeof(u_char) + sizeof(struct in_addr));
printf("end:%x\n",*e);
}
//客户端main,运行命令:./client 服务器ip 端口 本机ip
int main(argc, *argv[])
{
inet_pton(AF_INET, argv[3], &longip);
AnalyserRegedit(buf1, longip);
while (fgets(send, 100, stdin) != NULL)
{
AnalyserRegedit(buf1, longip);
n = udp_send(sockfd, buf1, 15, (struct sockaddr *)&serveraddr, sin_size);
if(n < 0)
{
perror("send error");
continue;
}
}
}
//服务器端程序
void de_buf(char *buf)
{
HEAD *head;
u_char *key, *end;
struct in_addr *longip;
head = (HEAD *)buf;
key = (u_char *)(buf + sizeof(HEAD));
longip = (struct in_addr *)(buf + sizeof(HEAD) + sizeof(u_char));
end = (u_char *)(buf + sizeof(HEAD) + sizeof(u_char) + sizeof(struct in_addr));
// if(*end == 0x11)
{
printf("begin:%x len:%d count:%x type:%x\n",head -> begin,head ->len,head ->count,head ->type);
printf("key:%d\n",*key);
printf("longip:%u, charip:%s\n",*longip, inet_ntoa(*longip));
printf("end:%x\n",*end);
}
// else
{
printf("Error!\n");
}
}
int main(int argc, char **argv)
{
while(1)
{
memset(buf2,0,15);
printf("begin receive\n");
n = udp_recv(sockfd, buf2, 15, (struct sockaddr *)&clientaddr, sin_size);
// buf2[n] = '\0';
printf("after receive\n");
if(n < 0)
{
perror("Can not receive message");
continue;
}
else
{
printf("sizeof(n):%d",n);
printf("The data from ip:%s, port:%d !\n",inet_ntoa(clientaddr.sin_addr),ntohs(clientaddr.sin_port));
h = (HEAD *)buf2;
l_ip = (struct in_addr *)(buf2 + sizeof(HEAD) + sizeof(u_char));
llip = l_ip -> s_addr;
printf("begin:%x len:%d count:%x type:%x\n",h -> begin,h ->len,h ->count,h ->type);
printf("longip(l_ip):%u, charip:%s\n\n\n\n\n\n",ntohl(llip), inet_ntoa(*l_ip));
de_buf(buf2);
}
}
现在接受到的数据,显示HEAD结构体里的值是对的,但是ip地址显示出错,比如传输的是192.168.0.1,显示的是192.168.0.92,传输202.168.0.1,显示202.168.0.92,就是最后两项总是不变.而且最后一项end的值我传的是0x11但是显示总是a,也是出错的,高手帮我看看,问题出在哪里,可以吗??? |
|