CHANGES
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:9k
源码类别:

通讯编程

开发平台:

Visual C++

  1. Diffusion 3.2.0
  2. ---------------
  3. - Added support for blacklisting neighbor nodes to the Filter API. The
  4.   two new API functions (addToBlacklist() and clearBlacklist()) were added
  5.   to dr.cc and supporting code was added to the filter_core.
  6. - Added the first alpha version of RMST (Reliable Multi-Segment Transport).
  7.   The sendRmst() API function was added to dr.cc. This filter is located
  8.   in the filters directory and there are sample rmst applications in
  9.   the apps directory.
  10. - Changed the node id environment variable from scadds_addr
  11.   to node_addr.
  12. - Added support for emstar-class devices with the --with-emstar
  13.   configure option.
  14. - Added --disable-stats and --with-emsim options to configure.
  15.   --with-emsim is a super-set of --with-emstar, but also adds
  16.   support running diffusion under emsim. It will try to detect
  17.   if it's being executed under emsim and then get node and
  18.   group ids from the corresponding environment variables. When compiled
  19.   with --with-emsim, Gear will also try to get node location information
  20.   from emsim's SIM_LOC environment variable.
  21.   --disable-stats will remove all iostats code from the filter_core
  22.   (and the two stats-related command-line options -s and -i).
  23. - Added the DiffPrintWithTime function. It works the same way as
  24.   DiffPrint, but will print a timestamp before the message.
  25. - Added support for gear to forward messages to geographic points
  26.   (in addition to regions).
  27. - Changed diffusion so it outputs stats to /tmp/diffusion-%d.out,
  28.   allowing multiple nodes running on a single machine to create
  29.   separate files (removed the ifdef for ns to it will do it also
  30.   inside ns).
  31. - Changed the directory structure to group diffusion filters and
  32.   applications in separate directories. Also moved stats.cc from the
  33.   library to the filter_core directory.
  34. - Renamed gradient --> two_phase_pull and diffusion --> filter_core
  35.   to avoid confusion. Some gear files were also renamed to match files
  36.   in other directories.
  37. - Removed support for the old rpc_stats mechanism (from lib/drivers)
  38. Diffusion 3.1.3
  39. ---------------
  40. - Diffusion now compiles with GCC 3.1 without any warnings.
  41. - Updated the autoconf/automake scripts to work with autoconf 2.52,
  42.   automake 1.6.3 and libtool 1.4.2. These versions are now required if
  43.   users want to re-create the configure script. make dist now includes
  44.   all other files (CHANGES, VERSION, COPYRIGHT, doc/*, and config/*).
  45.   In addition, the --with-sh4 and --with-ipaq configure options were
  46.   removed (the new autoconf version uses --host for cross-compiling).
  47. - Changed the sendPacket function in the WINSNG driver to print the
  48.   destination node if it is not cached.
  49. - Fixed a bug in gradient.cc that caused positive reinforcements to also
  50.   go to local sources.
  51. - Updated parameters in config.hh to optimize diffusion for the various
  52.   supported radios.
  53. - Changed the iolog module to also output time information, allowing
  54.   logs to be merged later offline if node's clocks are synchronized
  55.   (this requires users to upgrade to Diffusion Visualization Tools 1.0.1
  56.   as this release will not work with prior versions).
  57. - Merged a few ns related fixes from the ns distribution.
  58. - Updated push_sender and push_receiver to work with gear.
  59. - Added new addTimer function to the diffusion API. Old addTimer still
  60.   works but it is now obsolete and support will be removed in future
  61.   releases. Refer to the updated diffusion API document for more details.
  62. - Changed the event management functions in diffusion/library. There is
  63.   a new class (TimersManager) that now controls the event queue. Changed
  64.   all applications that use timers (diffusion, gradient, and gear) to
  65.   use the new addTimer API.
  66. - removeTimer is now supported in ns.
  67. - Removed all timer references from config.hh in lib/main.
  68. - Changed gradient.cc not to forward data back to where it comes from.
  69.   This will suppress duplicate traffic when we have a lot of cross
  70.   subscriptions.
  71. - Improved debugging in Gear. All debug messages now have a timestamp.
  72. Diffusion 3.1.2
  73. ---------------
  74. - Fixed timing issue in dr.cc (ns related issue).
  75. - Added support for gear to work with push.
  76. - Added an iohook layer that allows code to work between diffusion core
  77.   and the device drivers.
  78. - Added support for an iolog layer that logs incoming and outgoing
  79.   packets as they are received/sent to the various device drivers.
  80. - Removed support for the BBN logger.
  81. Diffusion 3.1.1
  82. ---------------
  83. - Added support for the new Sensoria RF API (Tested with Sensoria
  84.   software version 2.0.1).
  85. - Changed the filter add/update scheme so diffusion can be
  86.   started after filters.
  87. Diffusion 3.1
  88. -------------
  89. - Revised GEAR to add support for all four operators (GE, GT, LE, LT)
  90.   for declaring a closed geographic region.
  91. - Added support for PUSH in the library API and in the gradient filter.
  92. - Added push_sender and push_receiver to the pingapp directory. These
  93.   are the 'push' versions of ping_sender and ping_receiver.
  94. - Removed agent1/agent2 from the distribution.
  95. - Changed the log filter to also print the packet size.
  96. - Included a revised (release 9.0) API document, with examples of
  97.   PUSH and GEAR subscriptions/publications.
  98. - Diffusion now uses autoconf/automake. It simplifies configuring/
  99.   compiling diffusion for the different hardware platforms and
  100.   rf device options.
  101. Diffusion 3.0.7
  102. ---------------
  103. - Added the first alpha version GEAR in the apps directory. Diffusion
  104.   now should be able to use geographic information to route packets,
  105.   not requiring all interest messages to be flooded.
  106. - Changed the filter scheme so now each filter has to have a
  107.   distinct priority (i.e. we don't support two filters with the
  108.   same priority value anymore).
  109. - Merged SendMessage and SendMessageToNext into a single function,
  110.   (SendMessage). It now allows filters to specify the next filter's
  111.   priority and therefore allows filters to be bypassed.
  112. - Changed the message class not to include a copy of the raw packet
  113.   anymore.
  114. - Changed all instances of FLAGGED_DATA to EXPLORATORY_DATA, in order
  115.   to be consistent with the names used elsewhere.
  116. - Added functionality to the API allowing filters work to in a single
  117.   thread mode. Added the doIt() and doOne() API functions to allow
  118.   the application/filter to give up its thread (either permanently
  119.   or just for a moment) for the library API to receive packets and
  120.   manage timers.
  121. - Added the DiffApp class that applications and filters can derive
  122.   from. It adds basic command line parsing code and keeps some of
  123.   the library's interface code.
  124. - Fixed a bug in agent1/agent2 when running in multi-threaded mode
  125.   (there's a lock inside libc that blocks fflush when also doing a
  126.   getc).
  127. - Added the iPaq ARM platform to the supported systems (in config.mk).
  128. Diffusion 3.0.6
  129. ---------------
  130. - Added support for BBN's distributed logger.
  131. - Changed the diffPrint function to use the variable argument
  132.   list syntax, as suggested by Peter Boettcher.
  133. - Renamed the agent applications to ping_sender and ping_receiver,
  134.   and added some extra functionality to measure latency and packet
  135.   loss.
  136. - Included the Steel Knight Applications (sk_sensorApp and
  137.   sk_gatewayApp).
  138. - Fixed bug when receiving an incoming message from the MoteNIC.
  139. - Included the nested queries applications in the distribution under
  140.   apps/nested.
  141. Diffusion 3.0.5
  142. ---------------
  143. - Changed several makefiles to ease code integration.
  144. - Changed diffusion statistics to include total number of messages sent
  145.   to a neighbor (unicast + broadcast).
  146. - Changed some internal names to allow easier NS integration.
  147. - Added wrappers for time and output functions to allow distributed
  148.   logging and easier NS integration.
  149. - Added option to support delayed positive reinforcement messages in
  150.   response to an exploratory data message.
  151. Diffusion 3.0.4
  152. ---------------
  153. - Fixed the code to work when only a single data packet is sent in
  154.   response to an interest message.
  155. - Added more randomization to the code so it works better when clocks
  156.   are synchronized.
  157. - The distribution now includes a source routing filter that can be
  158.   used to send a message along a pre-specified path.
  159. - Tuned diffusion parameters for optimal operation on the SensIT
  160.   hardware.
  161. Diffusion 3.0.3
  162. ---------------
  163. - Diffusion can now use alternate ports (instead of the default 2000)
  164.   with the new command line option '-p port'. Other apps will have to
  165.   be changed to use this feature.
  166. - The '-s' command line option has been removed.
  167. - This version features an initial implementation of the device independent
  168.   layer in diffusion along with diffusion drivers for the RPC, the MoteNic
  169.   Wired UDP and UDP communication with local modules/apps. Everything has
  170.   been moved to main/drivers.
  171. - Diffusion/and the API library now use dynamically allocated buffers for
  172.   both incoming and outgoing packets.
  173. - Fixed the code to compile without warnings on gcc 2.97 (used to cross
  174.   compile code for the new Sensoria nodes).
  175. - Fixed all Makefiles to include the config.mk configuration file.
  176. - The UDP driver now can support diffusion running on port other than
  177.   2000. The config file for the wired diffusion now accepts the port
  178.   number along with the host ip address. This allows one to run multiple
  179.   'diffusion nodes' on a single machine.
  180. - Diffusion now has a driver for the WINSNG 2.0 nodes' radios.
  181. Diffusion 3.0.2
  182. ---------------
  183. - Removed all dependencies from the radiometrix library.
  184.   It should compile fine now with Red Hat 7.1. This version
  185.   of diffusion does not support the old 'userland' implementation
  186.   of the radiometrix drivers.
  187. Diffusion 3.0.1
  188. ---------------
  189. - Initial release of diffusion 3.