udp.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * INET An implementation of the TCP/IP protocol suite for the LINUX
  3.  * operating system.  INET is implemented using the  BSD Socket
  4.  * interface as the means of communication with the user level.
  5.  *
  6.  * Definitions for the UDP module.
  7.  *
  8.  * Version: @(#)udp.h 1.0.2 05/07/93
  9.  *
  10.  * Authors: Ross Biro, <bir7@leland.Stanford.Edu>
  11.  * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
  12.  *
  13.  * Fixes:
  14.  * Alan Cox : Turned on udp checksums. I don't want to
  15.  *   chase 'memory corruption' bugs that aren't!
  16.  *
  17.  * This program is free software; you can redistribute it and/or
  18.  * modify it under the terms of the GNU General Public License
  19.  * as published by the Free Software Foundation; either version
  20.  * 2 of the License, or (at your option) any later version.
  21.  */
  22. #ifndef _UDP_H
  23. #define _UDP_H
  24. #include <linux/udp.h>
  25. #include <net/sock.h>
  26. #define UDP_HTABLE_SIZE 128
  27. /* udp.c: This needs to be shared by v4 and v6 because the lookup
  28.  *        and hashing code needs to work with different AF's yet
  29.  *        the port space is shared.
  30.  */
  31. extern struct sock *udp_hash[UDP_HTABLE_SIZE];
  32. extern rwlock_t udp_hash_lock;
  33. extern int udp_port_rover;
  34. static inline int udp_lport_inuse(u16 num)
  35. {
  36. struct sock *sk = udp_hash[num & (UDP_HTABLE_SIZE - 1)];
  37. for(; sk != NULL; sk = sk->next) {
  38. if(sk->num == num)
  39. return 1;
  40. }
  41. return 0;
  42. }
  43. /* Note: this must match 'valbool' in sock_setsockopt */
  44. #define UDP_CSUM_NOXMIT 1
  45. /* Used by SunRPC/xprt layer. */
  46. #define UDP_CSUM_NORCV 2
  47. /* Default, as per the RFC, is to always do csums. */
  48. #define UDP_CSUM_DEFAULT 0
  49. extern struct proto udp_prot;
  50. extern void udp_err(struct sk_buff *, u32);
  51. extern int udp_connect(struct sock *sk,
  52.     struct sockaddr *usin, int addr_len);
  53. extern int udp_sendmsg(struct sock *sk, struct msghdr *msg, int len);
  54. extern int udp_rcv(struct sk_buff *skb);
  55. extern int udp_ioctl(struct sock *sk, int cmd, unsigned long arg);
  56. extern int udp_disconnect(struct sock *sk, int flags);
  57. extern struct udp_mib udp_statistics[NR_CPUS*2];
  58. #define UDP_INC_STATS(field) SNMP_INC_STATS(udp_statistics, field)
  59. #define UDP_INC_STATS_BH(field) SNMP_INC_STATS_BH(udp_statistics, field)
  60. #define UDP_INC_STATS_USER(field)  SNMP_INC_STATS_USER(udp_statistics, field)
  61. #endif /* _UDP_H */