Blame view

include/linux/udp.h 3.03 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  /*
   * INET		An implementation of the TCP/IP protocol suite for the LINUX
   *		operating system.  INET is implemented using the  BSD Socket
   *		interface as the means of communication with the user level.
   *
   *		Definitions for the UDP protocol.
   *
   * Version:	@(#)udp.h	1.0.2	04/28/93
   *
   * Author:	Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
   *
   *		This program is free software; you can redistribute it and/or
   *		modify it under the terms of the GNU General Public License
   *		as published by the Free Software Foundation; either version
   *		2 of the License, or (at your option) any later version.
   */
  #ifndef _LINUX_UDP_H
  #define _LINUX_UDP_H
  
  #include <linux/types.h>
  
  struct udphdr {
4e7e0c759   Al Viro   [IPV4]: UDP heade...
23
24
25
  	__be16	source;
  	__be16	dest;
  	__be16	len;
9981a0e36   Al Viro   [NET]: Annotate c...
26
  	__sum16	check;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
27
28
29
30
31
32
33
34
35
  };
  
  /* UDP socket options */
  #define UDP_CORK	1	/* Never send partially complete segments */
  #define UDP_ENCAP	100	/* Set the socket to accept encapsulated packets */
  
  /* UDP encapsulation types */
  #define UDP_ENCAP_ESPINUDP_NON_IKE	1 /* draft-ietf-ipsec-nat-t-ike-00/01 */
  #define UDP_ENCAP_ESPINUDP	2 /* draft-ietf-ipsec-udp-encaps-06 */
342f0234c   James Chapman   [UDP]: Introduce ...
36
  #define UDP_ENCAP_L2TPINUDP	3 /* rfc2661 */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
37
38
  
  #ifdef __KERNEL__
14c850212   Arnaldo Carvalho de Melo   [INET_SOCK]: Move...
39
  #include <net/inet_sock.h>
310afe86a   Joe Perches   [NET]: include/li...
40
  #include <linux/skbuff.h>
0b4419162   Pavel Emelyanov   netns: introduce ...
41
  #include <net/netns/hash.h>
310afe86a   Joe Perches   [NET]: include/li...
42
43
44
45
46
  
  static inline struct udphdr *udp_hdr(const struct sk_buff *skb)
  {
  	return (struct udphdr *)skb_transport_header(skb);
  }
f86dcc5aa   Eric Dumazet   udp: dynamically ...
47
  #define UDP_HTABLE_SIZE_MIN		(CONFIG_BASE_SMALL ? 128 : 256)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
48

f86dcc5aa   Eric Dumazet   udp: dynamically ...
49
  static inline int udp_hashfn(struct net *net, unsigned num, unsigned mask)
d6266281f   Pavel Emelyanov   udp: introduce a ...
50
  {
f86dcc5aa   Eric Dumazet   udp: dynamically ...
51
  	return (num + net_hash_mix(net)) & mask;
d6266281f   Pavel Emelyanov   udp: introduce a ...
52
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
53
54
55
  struct udp_sock {
  	/* inet_sock has to be the first member */
  	struct inet_sock inet;
d4cada4ae   Eric Dumazet   udp: split sk_has...
56
57
  #define udp_port_hash		inet.sk.__sk_common.skc_u16hashes[0]
  #define udp_portaddr_hash	inet.sk.__sk_common.skc_u16hashes[1]
512615b6b   Eric Dumazet   udp: secondary ha...
58
  #define udp_portaddr_node	inet.sk.__sk_common.skc_portaddr_node
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
59
60
61
62
  	int		 pending;	/* Any pending frames ? */
  	unsigned int	 corkflag;	/* Cork is required */
    	__u16		 encap_type;	/* Is this an Encapsulation socket? */
  	/*
47bdd718c   Adrian Bunk   typo fixes: infom...
63
  	 * Following member retains the information to create a UDP header
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
64
65
66
  	 * when the socket is uncorked.
  	 */
  	__u16		 len;		/* total length of pending frames */
ba4e58eca   Gerrit Renker   [NET]: Supporting...
67
68
69
70
71
72
73
74
75
76
  	/*
  	 * Fields specific to UDP-Lite.
  	 */
  	__u16		 pcslen;
  	__u16		 pcrlen;
  /* indicator bits used by pcflag: */
  #define UDPLITE_BIT      0x1  		/* set by udplite proto init function */
  #define UDPLITE_SEND_CC  0x2  		/* set via udplite setsockopt         */
  #define UDPLITE_RECV_CC  0x4		/* set via udplite setsocktopt        */
  	__u8		 pcflag;        /* marks socket as UDP-Lite if > 0    */
342f0234c   James Chapman   [UDP]: Introduce ...
77
78
79
80
81
  	__u8		 unused[3];
  	/*
  	 * For encapsulation sockets.
  	 */
  	int (*encap_rcv)(struct sock *sk, struct sk_buff *skb);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
82
83
84
85
86
87
  };
  
  static inline struct udp_sock *udp_sk(const struct sock *sk)
  {
  	return (struct udp_sock *)sk;
  }
e898d4db2   YOSHIFUJI Hideaki   [UDP]: Allow user...
88

30fff9231   Eric Dumazet   udp: bind() optim...
89
90
91
92
93
  #define udp_portaddr_for_each_entry(__sk, node, list) \
  	hlist_nulls_for_each_entry(__sk, node, list, __sk_common.skc_portaddr_node)
  
  #define udp_portaddr_for_each_entry_rcu(__sk, node, list) \
  	hlist_nulls_for_each_entry_rcu(__sk, node, list, __sk_common.skc_portaddr_node)
ba4e58eca   Gerrit Renker   [NET]: Supporting...
94
  #define IS_UDPLITE(__sk) (udp_sk(__sk)->pcflag)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
95
96
97
98
  
  #endif
  
  #endif	/* _LINUX_UDP_H */