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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* include/net/dsfield.h - Manipulation of the Differentiated Services field */
  2. /* Written 1998-2000 by Werner Almesberger, EPFL ICA */
  3. #ifndef __NET_DSFIELD_H
  4. #define __NET_DSFIELD_H
  5. #include <linux/types.h>
  6. #include <linux/ip.h>
  7. #include <linux/ipv6.h>
  8. #include <asm/byteorder.h>
  9. static inline __u8 ipv4_get_dsfield(struct iphdr *iph)
  10. {
  11. return iph->tos;
  12. }
  13. static inline __u8 ipv6_get_dsfield(struct ipv6hdr *ipv6h)
  14. {
  15. return ntohs(*(__u16 *) ipv6h) >> 4;
  16. }
  17. static inline void ipv4_change_dsfield(struct iphdr *iph,__u8 mask,
  18.     __u8 value)
  19. {
  20.         __u32 check = ntohs(iph->check);
  21. __u8 dsfield;
  22. dsfield = (iph->tos & mask) | value;
  23. check += iph->tos;
  24. if ((check+1) >> 16) check = (check+1) & 0xffff;
  25. check -= dsfield;
  26. check += check >> 16; /* adjust carry */
  27. iph->check = htons(check);
  28. iph->tos = dsfield;
  29. }
  30. static inline void ipv6_change_dsfield(struct ipv6hdr *ipv6h,__u8 mask,
  31.     __u8 value)
  32. {
  33.         __u16 tmp;
  34. tmp = ntohs(*(__u16 *) ipv6h);
  35. tmp = (tmp & ((mask << 4) | 0xf00f)) | (value << 4);
  36. *(__u16 *) ipv6h = htons(tmp);
  37. }
  38. #if 0 /* put this later into asm-i386 or such ... */
  39. static inline void ip_change_dsfield(struct iphdr *iph,__u16 dsfield)
  40. {
  41. __u16 check;
  42. __asm__ __volatile__("
  43. movw 10(%1),%0
  44. xchg %b0,%h0
  45. addb 1(%1),%b0
  46. adcb $0,%h0
  47. adcw $1,%0
  48. cmc
  49. sbbw %2,%0
  50. sbbw $0,%0
  51. movb %b2,1(%1)
  52. xchg %b0,%h0
  53. movw %0,10(%1)"
  54.     : "=&r" (check)
  55.     : "r" (iph), "r" (dsfield)
  56.     : "cc");
  57. }
  58. #endif
  59. #endif