forked from antirez/hping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sockopt.c
40 lines (34 loc) · 909 Bytes
/
sockopt.c
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
30
31
32
33
34
35
36
37
38
39
40
/*
* $smu-mark$
* $name: sockopt.c$
* $author: Salvatore Sanfilippo <[email protected]>$
* $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: sockopt.c,v 1.3 2003/09/07 11:21:18 antirez Exp $ */
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h> /* IP_PROTOIP */
#include <stdio.h>
void socket_broadcast(int sd)
{
const int one = 1;
if (setsockopt(sd, SOL_SOCKET, SO_BROADCAST,
(char *)&one, sizeof(one)) == -1)
{
printf("[socket_broadcast] can't set SO_BROADCAST option\n");
/* non fatal error */
}
}
void socket_iphdrincl(int sd)
{
const int one = 1;
if (setsockopt(sd, IPPROTO_IP, IP_HDRINCL,
(char *)&one, sizeof(one)) == -1)
{
printf("[socket_iphdrincl] can't set IP_HDRINCL option\n");
/* non fatal error */
}
}