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

通讯编程

开发平台:

Visual C++

  1. //
  2. // attrs.hh        : Attribute Functions Definitions
  3. // authors         : John Heidemann and Fabio Silva
  4. //
  5. // Copyright (C) 2000-2002 by the University of Southern California
  6. // $Id: attrs.hh,v 1.7 2005/09/13 04:53:49 tomh 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 _ATTRS_HH_
  43. #define _ATTRS_HH_
  44. #ifdef HAVE_CONFIG_H
  45. #include "config.h"
  46. #endif // HAVE_CONFIG_H
  47. #include <unistd.h>
  48. #include <netinet/in.h>
  49. #include "nr/nr.hh"
  50. #include "header.hh"
  51. #include "tools.hh"
  52. // Here we define a few functions that will help developers create
  53. // and manipulate attribute sets.
  54. // CopyAttrs returns a NRAttrVec containing a copy of the attributes
  55. // given in 'src_attrs' (which are not changed).
  56. NRAttrVec * CopyAttrs(NRAttrVec *src_attrs);
  57. // AddAttrs adds all attributes from 'attr_vec2' to 'attr_vec1. The
  58. // attributes from 'attr_vec2' remain intact and its attributes are
  59. // copied and added to 'attr_vec1'
  60. void AddAttrs(NRAttrVec *attr_vec1, NRAttrVec *attr_vec2);
  61. // ClearAttrs deletes all attributes from 'attr_vec'. The result is an
  62. // empty NRAttrVec
  63. void ClearAttrs(NRAttrVec *attr_vec);
  64. // PrintAttrs prints the contents of all attributes given in
  65. // 'attr_vec' to stderr. The attribute vector is not changed
  66. void PrintAttrs(NRAttrVec *attr_vec);
  67. // AllocateBuffer returns a buffer (DiffPacket) with sufficient space
  68. // for the attributes in 'attr_vec' to be packaged by the function
  69. // PackAttrs. The attribute vector is not changed
  70. DiffPacket AllocateBuffer(NRAttrVec *attr_vec);
  71. // CalculateSize returns the buffer size necessary to hold all the
  72. // attributes from 'attr_vec' if the PackAttrs function is used
  73. int CalculateSize(NRAttrVec *attr_vec);
  74. // PackAttrs packs all attributes given in 'attr_vec' on the buffer
  75. // starting at 'start_pos'. It assumes there is enough space in the
  76. // buffer to accomodate all attributes
  77. int PackAttrs(NRAttrVec *attr_vec, char *start_pos);
  78. // UnpackAttrs returns an attribute vector containing 'num_attr'
  79. // attributes, which are unpacked from 'pkt'
  80. NRAttrVec * UnpackAttrs(DiffPacket pkt, int num_attr);
  81. // PerfectMatch returns TRUE if the attributes from 'attr_vec1' and
  82. // 'attr_vec2' are identical. For each attribute in each vector, there
  83. // must be the same attribute in the other vector
  84. bool PerfectMatch(NRAttrVec *attr_vec1, NRAttrVec *attr_vec2);
  85. // OneWayPerfectMatch returns TRUE if each attribute in 'attr_vec1' is
  86. // also present (identical attribute) in 'attr_vec2'
  87. bool OneWayPerfectMatch(NRAttrVec *attr_vec1, NRAttrVec *attr_vec2);
  88. // MatchAttrs returns TRUE if the attributes from 'attr_vec1' and
  89. // 'attr_vec2' match each other (Please refer to the API document for
  90. // a complete description of the matching rules).
  91. bool MatchAttrs(NRAttrVec *attr_vec1, NRAttrVec *attr_vec2);
  92. // OneWayMatch returns TRUE if the attributes from 'attr_vec2' match
  93. // the attributes in 'attr_vec1'. (I.E. For each attribute in
  94. // 'attr_vec1' that has an operator different than 'IS', we need to
  95. // find a match in 'attr_vec2'
  96. bool OneWayMatch(NRAttrVec *attr_vec1, NRAttrVec *attr_vec2);
  97. #endif // !_ATTRS_HH_