File: sendrawip.c

package info (click to toggle)
hping3 3.a2.ds2-6
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 1,184 kB
  • ctags: 1,376
  • sloc: ansic: 11,582; sh: 133; makefile: 130
file content (27 lines) | stat: -rw-r--r-- 506 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* $Id: sendrawip.c,v 1.2 2003/09/01 00:22:06 antirez Exp $ */

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/time.h>
#include <unistd.h>
#include <signal.h>
#include <errno.h>

#include "hping2.h"
#include "globals.h"

void send_rawip(void)
{
	char *packet;

	packet = malloc(data_size);
	if (packet == NULL) {
		perror("[send_rawip] malloc()");
		return;
	}
	memset(packet, 0, data_size);
	data_handler(packet, data_size);
	send_ip_handler(packet, data_size);
	free(packet);
}