- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
当我运行时
cc -c -o rawudp.o rawudp.c
我明白了
在 rawudp.c:1:0 包含的文件中:
rawudp.h:48:23: 错误:未知类型名称‘sockaddr’
make: * [rawudp.o] 错误 1
这是我使用的头文件。
#ifndef RAWUDP_H_
#define RAWUDP_H_ value
#include <stdlib.h>
#include <strings.h>
#include <unistd.h>
#include <stdio.h>
#include <sys/socket.h>
#include <sys/uio.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <netinet/udp.h>
// The packet length
#define PCKT_LEN 8192
//IP Header Constants
#define IP_HEADER_IHL 5;
#define IP_HEADER_VERSION 4;
#define IP_HEADER_TOS 16;
#define IP_HEADER_TTL 64;
#define IP_HEADER_PROTOCOL 17;
typedef struct ipheader {
unsigned char iph_ihl:5, iph_ver:4;
unsigned char iph_tos;
unsigned short int iph_len;
unsigned short int iph_ident;
unsigned char iph_flag;
unsigned short int iph_offset;
unsigned char iph_ttl;
unsigned char iph_protocol;
unsigned short int iph_chksum;
unsigned int iph_sourceip;
unsigned int iph_destip;
} ipheader;
// UDP header's structure
typedef struct udpheader {
unsigned short int udph_srcport;
unsigned short int udph_destport;
unsigned short int udph_len;
unsigned short int udph_chksum;
} udpheader;
#endif
#include "rawudp.h"
// Function for checksum calculation. From the RFC,
// the checksum algorithm is:
// "The checksum field is the 16 bit one's complement of the one's
// complement sum of all 16 bit words in the header. For purposes of
// computing the checksum, the value of the checksum field is zero."
unsigned short csum(unsigned short *buf, int nwords)
{ //
unsigned long sum;
for(sum=0; nwords>0; nwords--)
sum += *buf++;
sum = (sum >> 16) + (sum &0xffff);
sum += (sum >> 16);
return (unsigned short)(~sum);
}
// Create a raw socket with UDP protocol
int udp_socket_init(){
int socket_descriptor;
socket_descriptor = socket(PF_INET, SOCK_RAW, IPPROTO_UDP);
if(socket_descriptor < 0)
{
perror("socket() error");
// If something wrong just exit
exit(-1);
}
else
return socket_descriptor;
//printf("socket() - Using SOCK_RAW socket and UDP protocol is OK.\n");
}
int ip_socket_init(sockaddr_in* udp_socket, char* port, char* ip_address){
udp_socket->sin_family = AF_INET;
//Convert and set port number
if (!(udp_socket->sin_port = htons(atoi(port)))){
printf("Could not set port number\n");
exit(-1);
}
//Convert and set IP Address
if (!(udp_socket->sin_addr.s_addr = inet_addr(ip_address)))
{
printf("Could not set IP address\n");
exit(-1);
}
return 1;
}
int ip_header_init(ipheader* ip, char* source_ip, char* dest_ip, size_t size){
// Fabricate the IP header or we can use the
// standard header structures but assign our own values.
ip->iph_ihl = IP_HEADER_IHL;
ip->iph_ver = IP_HEADER_VERSION;
ip->iph_tos = IP_HEADER_TOS; // Low delay
ip->iph_len = size;
ip->iph_ident = htons(54321);
ip->iph_ttl = IP_HEADER_TTL; // hops
ip->iph_protocol = IP_HEADER_PROTOCOL; // UDP
// Source IP address, can use spoofed address here!!!
ip->iph_sourceip = inet_addr(source_ip);
// The destination IP address
ip->iph_destip = inet_addr(dest_ip);
}
int udp_header_init(udpheader* udp, char* source_port, char* dest_port){
// Fabricate the UDP header. Source port number, redundant
udp->udph_srcport = htons(atoi(source_port));
// Destination port number
udp->udph_destport = htons(atoi(dest_port));
udp->udph_len = htons(sizeof(struct udpheader));
}
// Source IP, source port, target IP, target port from the command line arguments
int main(int argc, char *argv[])
{
int socket_descriptor;
// No data/payload just datagram
char buffer[PCKT_LEN];
// Our own headers' structures
struct ipheader *ip = (struct ipheader *) buffer;
struct udpheader *udp = (struct udpheader *) (buffer + sizeof(struct ipheader));
// Source and destination addresses: IP and port
struct sockaddr_in sin;
struct sockaddr_in din;
socket_descriptor = udp_socket_init();
int one = 1;
const int *val = &one;
bzero(buffer, PCKT_LEN);
if(argc != 5)
{
printf("- Invalid parameters!!!\n");
printf("- Usage %s <source hostname/IP> <source port> <target hostname/IP> <target port>\n", argv[0]);
exit(-1);
}
ip_socket_init(&sin, argv[2], argv[1]);
ip_socket_init(&din, argv[4], argv[3]);
ip_header_init(ip, argv[1], argv[3], sizeof(struct ipheader) + sizeof(struct udpheader));
udp_header_init(udp, argv[2], argv[4]);
// Calculate the checksum for integrity
ip->iph_chksum = csum((unsigned short *)buffer, sizeof(struct ipheader) + sizeof(struct udpheader));
// Inform the kernel do not fill up the packet structure. we will build our own...
if(setsockopt(socket_descriptor, IPPROTO_IP, IP_HDRINCL, val, sizeof(one)) < 0)
{
perror("setsockopt() error");
exit(-1);
}
else
printf("setsockopt() is OK.\n");
// Send loop, send for every 2 second for 100 count
printf("Trying...\n");
printf("Using raw socket and UDP protocol\n");
printf("Using Source IP: %s port: %u, Target IP: %s port: %u.\n", argv[1], atoi(argv[2]), argv[3], atoi(argv[4]));
int count;
for(count = 1; count <=20; count++)
{
if(sendto(socket_descriptor, buffer, ip->iph_len, 0, (struct sockaddr *)&sin, sizeof(sin)) < 0)
// Verify
{
perror("sendto() error");
exit(-1);
}
else
{
printf("Count #%u - sendto() is OK.\n", count);
sleep(2);
}
}
close(socket_descriptor);
return 0;
}
我相信我已经包含了正确的头文件,但无法找到头文件中未包含 sockaddr 的原因。我也试过 sockaddr_in 但仍然没有骰子。
最佳答案
如您所说,感谢大家的帮助。
使用它时你需要这样指定(也在函数声明中)
struct sockaddr_in foo;
int bar(struct sockaddr_in);
关于c - 未知类型名称 ‘sockaddr’,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17309853/
我正在尝试编写一个相当多态的库。我遇到了一种更容易表现出来却很难说出来的情况。它看起来有点像这样: {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE
谁能解释一下这个表达式是如何工作的? type = type || 'any'; 这是否意味着如果类型未定义则使用“任意”? 最佳答案 如果 type 为“falsy”(即 false,或 undef
我有一个界面,在IAnimal.fs中, namespace Kingdom type IAnimal = abstract member Eat : Food -> unit 以及另一个成功
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: What is the difference between (type)value and type(va
在 C# 中,default(Nullable) 之间有区别吗? (或 default(long?) )和 default(long) ? Long只是一个例子,它可以是任何其他struct类型。 最
假设我有一个案例类: case class Foo(num: Int, str: String, bool: Boolean) 现在我还有一个简单的包装器: sealed trait Wrapper[
这个问题在这里已经有了答案: Create C# delegate type with ref parameter at runtime (1 个回答) 关闭 2 年前。 为了即时创建委托(dele
我正在尝试获取图像的 dct。一开始我遇到了错误 The function/feature is not implemented (Odd-size DCT's are not implemented
我正在尝试使用 AFNetworking 的 AFPropertyListRequestOperation,但是当我尝试下载它时,出现错误 预期的内容类型{( “应用程序/x-plist” )}, 得
我在下面收到错误。我知道这段代码的意思,但我不知道界面应该是什么样子: Element implicitly has an 'any' type because index expression is
我尝试将 SignalType 从 ReactiveCocoa 扩展为自定义 ErrorType,代码如下所示 enum MyError: ErrorType { // .. cases }
我无法在任何其他问题中找到答案。假设我有一个抽象父类(super class) Abstract0,它有两个子类 Concrete1 和 Concrete1。我希望能够在 Abstract0 中定义类
我想知道为什么这个索引没有用在 RANGE 类型中,而是用在 INDEX 中: 索引: CREATE INDEX myindex ON orders(order_date); 查询: EXPLAIN
我正在使用 RxJava,现在我尝试通过提供 lambda 来订阅可观察对象: observableProvider.stringForKey(CURRENT_DELETED_ID) .sub
我已经尝试了几乎所有解决问题的方法,其中包括。为 提供类型使用app.use(express.static('public'))还有更多,但我似乎无法为此找到解决方案。 index.js : imp
以下哪个 CSS 选择器更快? input[type="submit"] { /* styles */ } 或 [type="submit"] { /* styles */ } 只是好
我不知道这个设置有什么问题,我在 IDEA 中获得了所有注释(@Controller、@Repository、@Service),它在行号左侧显示 bean,然后转到该 bean。 这是错误: 14-
我听从了建议 registering java function as a callback in C function并且可以使用“简单”类型(例如整数和字符串)进行回调,例如: jstring j
有一些 java 类,加载到 Oracle 数据库(版本 11g)和 pl/sql 函数包装器: create or replace function getDataFromJava( in_uLis
我已经从 David Walsh 的 css 动画回调中获取代码并将其修改为 TypeScript。但是,我收到一个错误,我不知道为什么: interface IBrowserPrefix { [
我是一名优秀的程序员,十分优秀!