File: opensockraw.c

package info (click to toggle)
hping3 3.a2.ds1-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,104 kB
  • ctags: 1,376
  • sloc: ansic: 11,582; sh: 537; makefile: 128
file content (29 lines) | stat: -rw-r--r-- 622 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
28
29
/* 
 * $smu-mark$ 
 * $name: opensockraw.c$ 
 * $author: Salvatore Sanfilippo <antirez@invece.org>$ 
 * $copyright: Copyright (C) 1999 by Salvatore Sanfilippo$ 
 * $license: This software is under GPL version 2 of license$ 
 * $date: Fri Nov  5 11:55:49 MET 1999$ 
 * $rev: 8$ 
 */ 

/* $Id: opensockraw.c,v 1.2 2003/09/01 00:22:06 antirez Exp $ */

#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h> /* IPPROTO_RAW def. */

int open_sockraw()
{
	int s;

	s = socket(AF_INET, SOCK_RAW, IPPROTO_RAW);
	if (s == -1) {
		perror("[open_sockraw] socket()");
		return -1;
	}

	return s;
}