summaryrefslogtreecommitdiff
path: root/contrib/syscall-test/raw.c
blob: 7995a0d3a5cc330603b906d2ecb4f2a8508b1262 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>
#include <unistd.h>
#include <sys/socket.h>
#include <netinet/ip.h>
#include <netinet/udp.h>

int main() {
	if (socket(PF_INET, SOCK_RAW, IPPROTO_UDP) == -1) {
		perror("socket");
		return 1;
	}

	return 0;
}