header.hh
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:4k
源码类别:

通讯编程

开发平台:

Visual C++

  1. //
  2. // header.hh     : Diffusion Datagram Header
  3. // authors       : Chalermek Intanagonwiwat and Fabio Silva
  4. //
  5. // Copyright (C) 2000-2002 by the University of Southern California
  6. // $Id: header.hh,v 1.8 2006/02/21 15:20:18 mahrenho Exp $
  7. //
  8. // This program is free software; you can redistribute it and/or
  9. // modify it under the terms of the GNU General Public License,
  10. // version 2, as published by the Free Software Foundation.
  11. //
  12. // This program is distributed in the hope that it will be useful,
  13. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. // GNU General Public License for more details.
  16. //
  17. // You should have received a copy of the GNU General Public License along
  18. // with this program; if not, write to the Free Software Foundation, Inc.,
  19. // 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  20. //
  21. // Linking this file statically or dynamically with other modules is making
  22. // a combined work based on this file.  Thus, the terms and conditions of
  23. // the GNU General Public License cover the whole combination.
  24. //
  25. // In addition, as a special exception, the copyright holders of this file
  26. // give you permission to combine this file with free software programs or
  27. // libraries that are released under the GNU LGPL and with code included in
  28. // the standard release of ns-2 under the Apache 2.0 license or under
  29. // otherwise-compatible licenses with advertising requirements (or modified
  30. // versions of such code, with unchanged license).  You may copy and
  31. // distribute such a system following the terms of the GNU GPL for this
  32. // file and the licenses of the other code concerned, provided that you
  33. // include the source code of that other code when and as the GNU GPL
  34. // requires distribution of source code.
  35. //
  36. // Note that people who make modified versions of this file are not
  37. // obligated to grant this special exception for their modified versions;
  38. // it is their choice whether to do so.  The GNU General Public License
  39. // gives permission to release a modified version without this exception;
  40. // this exception also makes it possible to release a modified version
  41. // which carries forward this exception.
  42. #ifndef _HEADER_HH_
  43. #define _HEADER_HH_
  44. #ifdef HAVE_CONFIG_H
  45. #include "config.h"
  46. #endif // HAVE_CONFIG_H
  47. #include "nr/nr.hh"
  48. typedef int *DiffPacket;
  49. #define MAX_PKT_SIZE           8192
  50. #define BROADCAST_ADDR           -1
  51. #define LOCALHOST_ADDR           -2
  52. #define DIFFUSION_VERSION         3
  53. #ifdef NS_DIFFUSION
  54. #define DEFAULT_DIFFUSION_PORT  255
  55. #else
  56. #define DEFAULT_DIFFUSION_PORT 2000
  57. #endif // NS_DIFFUSION
  58. #define DIFFUSION_PORT         DEFAULT_DIFFUSION_PORT
  59. // For accessing fields in the diffusion header
  60. #define LAST_HOP(x)     (x)->last_hop
  61. #define NEXT_HOP(x)     (x)->next_hop
  62. #define DIFF_VER(x)     (x)->version
  63. #define MSG_TYPE(x)     (x)->msg_type
  64. #define DATA_LEN(x)     (x)->data_len
  65. #define PKT_NUM(x)      (x)->pkt_num
  66. #define RDM_ID(x)       (x)->rdm_id
  67. #define NUM_ATTR(x)     (x)->num_attr
  68. #define SRC_PORT(x)     (x)->src_port
  69. // Message types
  70. typedef enum msg_t_ {
  71.   INTEREST,
  72.   POSITIVE_REINFORCEMENT,
  73.   NEGATIVE_REINFORCEMENT,
  74.   DATA,
  75.   EXPLORATORY_DATA,
  76.   PUSH_EXPLORATORY_DATA,
  77.   CONTROL,
  78.   REDIRECT
  79. } diff_msg_t;
  80. // Header structure
  81. struct hdr_diff {
  82.   int32_t         last_hop;           // forwarder node id
  83.   int32_t         next_hop;           // next hop node id
  84.   int8_t          version;            // protocol version
  85.   int8_t          msg_type;           // message type
  86.   int16_t         data_len;           // data length
  87.   int32_t         pkt_num;            // packet number
  88.   int32_t         rdm_id;             // random id
  89.   int16_t         num_attr;           // number of attributes
  90.   int16_t         src_port;           // sender port id
  91. };
  92. #define HDR_DIFF(x)   (struct hdr_diff *)(x)
  93. #endif // !_HEADER_HH_