arsglue.c

来自「VC++源代码」· C语言 代码 · 共 33 行

C
33
字号
/* Glue between hping and the ars engine */#include <stdlib.h>#include <stdio.h>#include "ars.h"/* Send the APD described packet {s} */void hping_ars_send(char *apd){	struct ars_packet p;	int s;	ars_init(&p);	s = ars_open_rawsocket(&p);	if (s == -ARS_ERROR) {		perror("Opening raw socket");		exit(1);	}	if (ars_d_build(&p, apd) != -ARS_OK) {		fprintf(stderr, "APD error: %s\n", p.p_error);		exit(1);	}	if (ars_compile(&p) != -ARS_OK) {		fprintf(stderr, "APD error compiling: %s\n", p.p_error);		exit(1);	}	if (ars_send(s, &p, NULL, 0) != -ARS_OK) {		perror("Sending the packet");		exit(1);	}	exit(0);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?