解析C中的原始套接字编程中的IP地址

时间:2014-04-17 10:15:29

标签: c linux sockets ip-address

我在C linux中实现原始套接字。我是套接字编程的新手,因此在使用Internet地址的数据类型方面存在一些问题。

我想知道下面代码中ip_addres的数据类型(在main中)应该是什么。我认为它需要是指针,因为我需要返回两个地址。然后这两个地址将在下一个函数中传递,如图所示。

main()
{
       int len,raw_socket;
       struct iphdr *ip_header;
       unsigned char *packet_buffer[2048];
       len=recvfrom(raw_socket,packet_buffer,2048,...);

       ip_addres=parseipheader(packet_buffer,len); /*I want this function to return ip address of destination and source*/
       ip_header=CreateIPHeader(source_ip,destination_ip);
}

parseipheader(unsigned char *packet,int len)
{
       struct iphdr *ip_header;
       ip_header=(struct ip_header *)(packet+sizeof(struct ethhdr));
       return ip_addresses;
}
struct iphdr* CreateIPHeader(source_ip,destination_ip)
{
       struct iphdr *ip_header;

       return ip_header;
}

1 个答案:

答案 0 :(得分:0)

是的,你是对的。您可以返回指向源IP地址的指针,目标IP地址是ip头中源IP地址的4个字节(32位)。所以你可以在源IP地址的地址加4,得到目的IP地址。

char * src_ip;

src_ip = parseipheader(packet_buffer,len);

CreateIPHeader(src_ip,src_ip + 4);