- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
这个程序应该从离线转储文件中捕获一个数据包并对其进行解码。在这里我遇到了 ntohs() 函数的问题(它接近尾声,标题描述在开头)。为什么它不起作用?操作系统 win7 x86,VS 2010 express。
#include "pcap.h"
#define SIZE_ETHERNET 14
#define ETHER_ADDR_LEN 6
/* 4 bytes IP address */
typedef struct ip_address{
u_char byte1;
u_char byte2;
u_char byte3;
u_char byte4;
}ip_address;
/* IPv4 header */
typedef struct ip_header{
u_char ver_ihl; // Version (4 bits) + Internet header length (4 bits)
u_char tos; // Type of service
u_short tlen; // Total length
u_short identification; // Identification
u_short flags_fo; // Flags (3 bits) + Fragment offset (13 bits)
u_char ttl; // Time to live
u_char proto; // Protocol
u_short crc; // Header checksum
ip_address saddr; // Source address
ip_address daddr; // Destination address
u_int op_pad; // Option + Padding
}ip_header;
/* UDP header*/
typedef struct udp_header{
u_short sport; // Source port
u_short dport; // Destination port
u_short len; // Datagram length
u_short crc; // Checksum
}udp_header;
typedef struct ethernet_address{
u_char byte1;
u_char byte2;
u_char byte3;
u_char byte4;
u_char byte5;
u_char byte6;
}ethernet_address;
/* Ethernet header */
typedef struct ethernet_header {
ethernet_address ether_dhost; /* Destination host address */
ethernet_address ether_shost; /* Source host address */
u_short ether_type; /* IP? ARP? RARP? etc */
};
/* TCP header */
typedef struct tcp_header {
u_short th_sport; /* source port */
u_short th_dport; /* destination port */
u_char th_offx2; /* data offset, rsvd */
#define TH_OFF(th) (((th)->th_offx2 & 0xf0) >> 4)
u_char th_flags;
#define TH_FIN 0x01
#define TH_SYN 0x02
#define TH_RST 0x04
#define TH_PUSH 0x08
#define TH_ACK 0x10
#define TH_URG 0x20
#define TH_ECE 0x40
#define TH_CWR 0x80
#define TH_FLAGS (TH_FIN|TH_SYN|TH_RST|TH_ACK|TH_URG|TH_ECE|TH_CWR)
u_short th_win; /* window */
u_short th_sum; /* checksum */
u_short th_urp; /* urgent pointer */
}tcp_header;
/* prototype of the packet handler */
void packet_handler(u_char *param, const struct pcap_pkthdr *header, const u_char *pkt_data);
/* Packet count */
int num = 1;
int main(int argc, char **argv)
{
pcap_t *adhandle;
char errbuf[PCAP_ERRBUF_SIZE];
char source[PCAP_BUF_SIZE];
u_int netmask;
char packet_filter[] = "";
struct bpf_program fcode;
if(argc != 2){
printf("usage: %s filename", argv[0]);
return -1;
}
/* Create the source string according to the new WinPcap syntax */
if ( pcap_createsrcstr( source, // variable that will keep the source string
PCAP_SRC_FILE, // we want to open a file
NULL, // remote host
NULL, // port on the remote host
argv[1], // name of the file we want to open
errbuf // error buffer
) != 0)
{
fprintf(stderr,"\nError creating a source string\n");
return -1;
}
/* Open the adapter */
if ( (adhandle= pcap_open(source, // name of the device
65536, // portion of the packet to capture.
// 65536 grants that the whole packet will be captured on all the MACs.
PCAP_OPENFLAG_PROMISCUOUS, // promiscuous mode
1000, // read timeout
NULL, // remote authentication
errbuf // error buffer
) ) == NULL)
{
fprintf(stderr,"\nUnable to open the adapter. %s is not supported by WinPcap\n");
return -1;
}
/* Check the link layer. We support only Ethernet for simplicity. */
if(pcap_datalink(adhandle) != DLT_EN10MB)
{
fprintf(stderr,"\nThis program works only on Ethernet networks.\n");
return -1;
}
/* if(d->addresses != NULL)
Retrieve the mask of the first address of the interface
netmask=((struct sockaddr_in *)(d->addresses->netmask))->sin_addr.S_un.S_addr;
else */
/* If the interface is without addresses we suppose to be in a C class network */
netmask=0xffffff;
//compile the filter
if (pcap_compile(adhandle, &fcode, packet_filter, 1, netmask) <0 )
{
fprintf(stderr,"\nUnable to compile the packet filter. Check the syntax.\n");
return -1;
}
//set the filter
if (pcap_setfilter(adhandle, &fcode)<0)
{
fprintf(stderr,"\nError setting the filter.\n");
return -1;
}
/* start the capture */
pcap_loop(adhandle, 0, packet_handler, NULL);
return 0;
}
/* Callback function invoked by libpcap for every incoming packet */
void packet_handler(u_char *param, const struct pcap_pkthdr *header, const u_char *pkt_data)
{
struct tm ltime;
char timestr[16];
time_t local_tv_sec;
u_int ip_len;
u_short sport,dport;
ip_header *ih;
const struct ethernet_header *ethh; /* The ethernet header */
/*
* Unused variable
*/
(VOID)(param);
printf("Packet %d\n", num);
num++;
/* convert the timestamp to readable format */
local_tv_sec = header->ts.tv_sec;
localtime_s(<ime, &local_tv_sec);
strftime( timestr, sizeof timestr, "%H:%M:%S", <ime);
/* print timestamp and length of the packet */
// printf("%s.%.6d len:%d ", timestr, header->ts.tv_usec, header->len);
/* retireve the position of the ethernet header */
ethh = (struct ethernet_header*)(pkt_data);
/* retireve the position of the ip header */
ih = (ip_header *) (pkt_data + 14); //length of ethernet header
/* retireve the position of the udp header */
ip_len = (ih->ver_ihl & 0xf) * 4;
/* print ip addresses and ports */
printf("Eth Src: %x:%x:%x:%x:%x:%x >>> Dest: %x:%x:%x:%x:%x:%x\nIP Src: %d.%d.%d.%d >>> Dest: %d.%d.%d.%d\n",
ethh->ether_shost.byte1,
ethh->ether_shost.byte2,
ethh->ether_shost.byte3,
ethh->ether_shost.byte4,
ethh->ether_shost.byte5,
ethh->ether_shost.byte6,
ethh->ether_dhost.byte1,
ethh->ether_dhost.byte2,
ethh->ether_dhost.byte3,
ethh->ether_dhost.byte4,
ethh->ether_dhost.byte5,
ethh->ether_dhost.byte6,
ih->saddr.byte1,
ih->saddr.byte2,
ih->saddr.byte3,
ih->saddr.byte4,
ih->daddr.byte1,
ih->daddr.byte2,
ih->daddr.byte3,
ih->daddr.byte4
);
/* Panage protocols */
if(ih->proto == 0x11)
{
udp_header *uh;
uh = (udp_header *) ((u_char*)ih + ip_len);
printf("UDP Src: %d >>> Dest: %d\n", uh->sport,uh->dport);
}
else if(ih->proto == 0x06)
{
tcp_header *tcp = NULL;
/* convert from network byte order to host byte order */
tcp = (tcp_header *) ((u_char*)ih + ip_len);
/*HERE*/ sport = ntohs(tcp->th_sport);
/*HERE*/ dport = ntohs(tcp->th_dport);
printf("TCP Src: %d >>> Dest: %d\n", sport,dport);
}
}
错误日志:
1>------ Build started: Project: cw1, Configuration: Debug Win32 ------
1> cw1.c
1>cw1.obj : error LNK2019: unresolved external symbol __imp__ntohs@4 referenced in function _packet_handler
1>C:\Users\Medardas\Desktop\ComputerScience\C.SC251 - CW1\cw1\Debug\cw1.exe : fatal error LNK1120: 1 unresolved externals
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
最佳答案
尝试包括 <arpa/inet.h>
或 <netinet/in.h>
.否则,请检查您的链接器设置。
关于c - ntohs() 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8261367/
int main() { uint8_t var = 9; var = ntohs(var); printf("var=%u",var) } 这段代码在 Little End
这个程序应该从离线转储文件中捕获一个数据包并对其进行解码。在这里我遇到了 ntohs() 函数的问题(它接近尾声,标题描述在开头)。为什么它不起作用?操作系统 win7 x86,VS 2010 exp
我有一个.cpp 文件:htonstest.cpp。我使用 g++ 编译它: $ g++ -o test htonstest.cpp 它有效,程序 ./test 也有效。 但是,当我使用 automa
我有一个程序一直依赖于 native::io::net::{htons, ntohs} 但现在在 Could not find 'io' in 'packet: :native'。变化似乎发生在上周的
我正在从 DNS 服务器获取一些数据,我正在尝试将某个部分转换为无符号整数(代表刷新间隔、到期时间等)。通过转换,我的意思是从大端到小端。问题是 ntohs 只放置了 2 个字节的数据而不是 4 个字
当我从 stringstream 读取数据时,我有一个关于如何使用 ntohs() 的问题。 对于下面的代码: read(ns, buf_receive, BUFFER_SIZE); stringst
我正在编写一个 ELF 分析器,但我在正确转换字节顺序时遇到了一些问题。我具有确定分析器的字节序和目标文件的字节序的函数。 基本上,有四种可能的情况: 在大端目标文件上运行的大端编译分析器 无需转换
我从一个答案中阅读了文档: ntohs 函数采用 TCP/IP 网络字节顺序(AF_INET 或 AF_INET6 地址族)的 16 位数字,并以主机字节顺序返回一个 16 位数字。 请举例说明,什么
要从另一台大端机器转换字节数组,我们可以使用: long long convert(unsigned char data[]) { long long res; res = 0; for(
我们正在将 C 语言的遗留代码重写为 C++。在我们系统的核心,我们有一个连接到 master 的 TCP 客户端。主人将不断地流式传输消息。每个套接字读取都会产生 N 条格式为 {type, siz
C# 中是否有网络到主机的转换函数?谷歌搜索并没有找到太多。 :P 最佳答案 IPAddress.HostToNetworkOrder和 IPAddress.NetworkToHostOrder ?
为什么Coverity会产生警告 > "cc" clobber ignored 对于下面提到的代码中的函数调用 htons() 和 ntohs()? lSocketAddr.sin_port = ht
我需要在可能位于不同平台的服务器和客户端之间发送一个枚举缓冲区。 但是枚举的大小取决于平台,我应该调用哪个函数? (htons() 或 htonl()),例如以下枚举: typedef enum f_
我不确定为什么 htons 和 ntohs 都存在于标准库中。他们做的事情完全一样——除非我有点困惑! htonl 和 ntohl 也是如此。 最佳答案 它们提供自文档化代码,告诉读者数据是按主机顺序
我正在使用现有代码,它通过 TCP 连接传递数据 - union ibv_gid 而不转换字节顺序。里面有注释:“gid会逐字节传输,所以不需要做”hton“。代码是正确的,可以工作,但我不明白为什么
我正在为一个不是 hton 数据的协议(protocol)编写一个 Wireshark 解析器插件,我需要在不进行任何字节序转换的情况下提取 64 位数据值。 Wireshark 库中是否有不执行 n
我正在尝试将整数值写入/从 C 套接字读取。有时 ntohs() 会返回非常大的值,例如 55000 、 32000 等...尽管客户端始终发送值 1500 ) { **printf
我对何时使用 ntohs 和 ntohl 感到很困惑。我知道何时将 ntohs 用于 uint16_t 和 ntohl uint32_t。但是那些具有 unsigned int 或指定了特定位数的那些
我是 C 网络编程的新手,我首先尝试将从键盘读取的数组发送到服务器。问题是,每当我从键盘读取数组的长度时,它都会增加 2/3,并且不再做任何正确的事情。例如: 我给出的长度或数组:2客户端将从键盘读取
这是一个 SSCCE ,显示了我的代码的简化版本,它仍然做了一些有用的事情: //Compile with -O3 -Wsign-conversion #include #include void
我是一名优秀的程序员,十分优秀!