MODS
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:19k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. Common Code Library: Modification history
  2. v1.0.0  - Initial version, based on RAT v3.2.7
  3. * 14 November 1998
  4. v1.0.1  - Added HMAC authentication code
  5. - Added timeout to udp_recv()
  6. - Added authentication of Mbus messages
  7. - Added RTP library
  8. - Added select and fd_set functions to net_udp.[ch]
  9. - IPv6 code now runs on the pre-release stack for Solaris 2.7
  10. - Mbus code support a configuration file on Unix, and the registry
  11.   on Win32, to save/restore settings
  12. - Add udp_host_addr() to get a text-version of the address to which
  13.   a socket is bound.
  14. - Set IPv6 ttl and loopback state correctly on Solaris
  15. - Move mbus hearbeat code into this library
  16. - Remove key expiry from the mbus code, since it created race
  17.   conditions when multiple tools for a single conference were
  18.   started either side of the expiry time.
  19. - Update mbus addressing scheme - names are now sets of tokens, if the
  20.   set of tokens in the destination address is a subset of the address 
  21.   of the entity receiving that message then the message is accepted. An
  22.   empty set is a valid destination address for a message, and that will
  23.   be accepted by all receivers (ie: a wildcard).
  24. - Remove channel ID from mbus code.
  25. - Fix configure script to work with solaris 2.7 where inet_aton() and 
  26.   inet_pton() have prototypes but no implementation.
  27. * 31 March 1999 [rat v4.0.0]
  28. v1.0.2  - Assorted fixes to RTP library
  29. - Fix bounds overruns in memory.c - will now run with -DDEBUG_MEM
  30.   with the bounds checker on.
  31. - Add timestamp to mbus packet headers.
  32. - Add mbus_qmsgf()
  33. - Cleanup mbus transmission path
  34. - Add support for DES encryption to the mbus (on by default)
  35. - Fix DES code
  36. - Mbus keeps a cache of other entities, and only allows sending of
  37.   reliable messages to known unicast addresses. 
  38. - Mbus error function now takes a "type of error" argument
  39. - Added xrealloc()
  40. - Fix reordering of mbus messages
  41. * 14 May 1999 [rat v4.0.1]
  42. v1.0.3  - Fix inet_aton() in net_udp.c
  43. * 15 May 1999 [rat v4.0.2]
  44. v1.0.4  - Fix compilation with Microsoft IPv6 stack
  45. - Solaris 2.5.1 doesn't have vsnprintf(), use vsprintf() instead
  46.   and don't worry about the possible buffer overflow problems. 
  47.   Reported by Holger Wirtz.
  48. - Added mbus_addr_valid()
  49. - Added timeout to mbus_recv()
  50. - Fixes to mbus code from Dirk Kutscher
  51. * 2 June 1999 [rat v4.0.3]
  52. v1.0.5  - Not quite sure what happened with this version, but if you have
  53.   it it's probably not a good idea to use it! :-)
  54. v1.0.6  - Add ability to send to one port whilst receiving on another, 
  55.   requested by Henning Schulzrinne.
  56. - Add mbus_cmd_handler() to change the function handling the
  57.   reception of mbus commands.
  58. - Compilation fixes for Irix 6.5 contributed by Bob Olson.
  59. - Add extra sanity checking to mbus_recv()
  60. - Add extra sanity checking to mbus_parse_*
  61. - Fix source address passed to mbus_recv() callback - was missing
  62.   the "(" and ")" around it.
  63. - Fix memory leak in mbus_recv()
  64. - Fixes for configure script on 64 bit IRIX from Peter Orbaek
  65. - Move base64 tests into test_base64.c and integrate with the test suite
  66. * Released 5 July 1999 
  67. v1.0.7  - Add udp_exit to close sockets and leave multicast groups if necessary.
  68. - Fix mbus_exit close sockets.
  69. - Move the code to deal with the mbus configuration into mbus_config.c
  70.   which will make it easier to write an mbus packet logger without code 
  71.   duplication (such a logger can't easily be part of mbus.c, since it's
  72.   needs conflict with correct protocol operation).
  73. - Note that v1.3 of the Microsoft Research IPv6 stack requires an explicit
  74.   route to be added for multicast traffic before a group can be joined. If
  75.   you get errors in the IPV6_ADD_MEMBERSHIP setsockopt, this is probably
  76.   the reason. We could specify an interface explicitly, but which one to
  77.   pick?
  78. - Updates to the IPv6 code for the Detexis Musica IPv6 stack
  79. - Updates to the RTP code from Markus Germeier: time-out and delete sources,
  80.   fix X but in RTP header, add support for sending BYE packets.
  81. - Add inet_pton() and inet_ntop() implementations, for those platforms
  82.   which are missing them.
  83. - Add gettimeofday() workaround for win32
  84. - Add drand48() workaround for win32
  85. * Released 20 August 1999
  86. v1.0.8  - Add mbus_sent_all()
  87. - Add loop count to mbus_recv(), so it will always return after 10
  88.   packets have been received. The prevents a denial of service attack
  89.   if packets are sent faster than the timeout period.
  90. - Add binary tree.
  91. - Add OpenBSD fixes from Angelos D. Keromytis
  92. - Add Jerry Isdale's debug_dump() routine.
  93. - Add fix to RTP init_seq() to correct bug(?) in RFC1889 which
  94.   means we incorrectly report the one packet lost in the first
  95.   reporting interval. Fix by Bill Fenner.
  96. - Make the RTP create_source() routine return a pointer to the
  97.   source. Patch from Bill Fenner.
  98. - Changes to the probation code in rtp.c from Bill Fenner.
  99. - Fix types in the RTP source struct.
  100. - Add a SOURCE_CREATED event to the RTP callback.
  101. - Add option to accept RTP packets before a corresponding RTCP
  102.   packet has been received.
  103. - Add RX_RR_EMPTY event to the RTP code, to indicate that an empty
  104.   reception report (ie: no report blocks) has been received.
  105. - Add RX_RTCP_START and RX_RTCP_FINISH events to the RTP code.
  106. - debug_msg() now displays the pid
  107. - The mbus code now maintains the list of active sources more correctly, 
  108.   making mbus_addr_valid() useful
  109. - rtp_init() now takes separate rx_port and tx_port, instead of a
  110.   single port for both sending and receiving.
  111. - Add rtp_get_addr(), rtp_get_rx_port(), rtp_get_tx_port() and rtp_get_ttl()
  112. - Change return type of rtp_recv to int (was void).  Returns TRUE if
  113.   packets were processed, FALSE otherwise.
  114. - Timeout RRs from the RTP database, if they're not refreshed for
  115.   3 times the RTCP reporting interval
  116. - rtp_update() only expires sources once per reporting interval, to
  117.   avoid burning too many cycles.
  118. - Mbus updates contributed by Markus Germeier
  119. - we now can configure the multicast address and port which the
  120.   mbus should use in ~/.mbus 
  121. - honor the SCOPE setting in ~/.mbus
  122. - expire sources we haven't heard from for a while
  123. - fixes small memory leak in remove_other_addr
  124. - mbus_exit now sends a mbus.quit and cleans up other_* structures
  125. - RTP updates contributed by Timur Friedman.
  126. - Add support for RTCP APP packets
  127. - Add support for a promiscuous mode to the RTP code, when in
  128.   promiscuous mode there is no wait for a minimum number of RTP
  129.   packets before recognizing a source.
  130. - Add the functions rtp_setopt() and rtp_getopt() that can be used
  131.   to control various options (right now just promiscuous mode).
  132. - Split rtp_recv_data() into two functions.
  133. * 5 October 1999
  134. v1.0.9  - Ignore ECONNREFUSED in net_udp.c
  135. - Add mbus_rendezvous_waiting() and mbus_rendezvous_go() to enable
  136.   easy rendezvous between multiple processes.
  137. - Change rtp_setopt() and rtp_getopt() to take boolean options only.
  138. - Remove rtp_weak_validation(), use rtp_setopt(RTP_OPT_WEAK_VALIDATION)
  139.   instead.
  140. - Delete RTP database entries which haven't been heard from for
  141.   more than 5 times the RTCP reporting interval.
  142. * 2 November 1999 [rat v4.1.1]
  143. v1.0.10 - Mbus updates from Markus Germeier, which fix compatibility with
  144.   the Uni Bremen implementation:
  145. - mbus.bye() signals an entity when it leaves. (mbus.quit commands
  146.   an entity to leave)
  147. - Generate and work with 64 bit DES keys. Generate parity bits for key.
  148.   Check if key in configuration file sets parity bits correctly.
  149. - mbus_heartbeat(m, 1) should send an mbus.hello() every second and
  150.   not every two seconds
  151. - HMAC-MD5 should read HMAC-MD5-96
  152. - Honor the MBUS environment variable for the MBUS configuration file
  153. - The TZI Mbus implementations generate spaces in configuration file,
  154.   which mislead the UCL Mbus to dump core. Allow Spaces in .mbus
  155. - Address must be unique
  156. - Delete failed reliable messages if err_handler is present
  157. - Fix uninitialized use of session->last_update in RTP code
  158. - Fix assertion failures in RTP library when sending RTCP packets
  159. - Recognize, but ignore, profile specific extensions to RTCP SR/RR packets
  160. - Update RTCP reporting interval calculation
  161. - Implement reverse reconsideration of RTCP reporting interval
  162. - Fix tv_diff in rtp.c to handle negative results
  163. - Remove rtp_get_encryption_key(), the user of the library is assumed to 
  164.   remember the passphrase used and doesn't need access to the internal
  165.   form of the key.
  166. - GNU autoconf modifications from Bill Fenner
  167. - Global change of integer types, and removal of compatibility defines:
  168. u_int8  -> u_int8_t
  169. u_int16 -> u_int16_t
  170. u_int32 -> u_int32_t
  171.   and the same for the signed varients.
  172. - Implement encryption in the RTP code
  173. - Ignore connection refused errors in IPv4 UDP send.
  174. - Hide definition of struct mbus_config
  175. - Add a version number to the mbus config file
  176. - Fixes for FreeBSD v3.2 with INRIA IPv6 stack from Fred Templin
  177. - Add configure check for sin6_len in struct sockaddr_in6 (seems
  178.   that FreeBSD has this, but many systems don't)
  179. - Fix batching of multiple mbus messages into one packet.
  180. * 13 December 1999 [rat v4.1.2]
  181. v1.1.0  - Changed autoconf generated header to uclconf.h.
  182. - Changed library name to uclmmbase to be consistent with other libs.   
  183. - Add RTP_OPT_FILTER_MY_PACKETS
  184. - Cleanup test routines
  185. - Fix various potential buffer overflow problems
  186. - Update copyright notices to welcome in the new millennium
  187. - Previous versions of udp_send() would sometimes return -1 on error, 
  188.   and would sometimes abort(). We now always return -1 and never abort.
  189. - Add test routines for code in net_udp.c
  190. - Fix SCOPE parameter in mbus configuration on windows
  191. - Fix sending of hearbeat messages whilst in mbus.waiting() and mbus.go() loops
  192. - Tidy up mbus_qmsg();
  193. - Add workaround for buffer overflow bug in _dprintf() which caused
  194.   a crash under Windows NT service pack 6. This is not a real fix, we
  195.   need to use vsnprintf() in there, but Windows doesn't implement it
  196.   and I don't have time before we give the demo... Sigh, only two
  197.   days wasted.
  198. - Fix buffer overflow in _dprintf() on Windows, using _vsnprintf().
  199. - Update IPv6 support for Microsoft Research IPv6 stack, v1.4
  200. - Use the versions of inet_ntop() and inet_pton() provided with the 
  201.   IPv6 stack, but retain our own implementation when building with 
  202.   IPv4 support only.
  203. - Use getaddrinfo() rather than getnodebyname() to get our IPv6 address if
  204.   running with the Microsoft Research IPv6 stack. 
  205. - We now require getaddrinfo() to be present in all IPv6 stacks: those which
  206.   do not have this call (eg: the Musica IPv6 stack) MUST provide a workaround
  207.   implementation.
  208.   versions of MSR IPv6 prior to 1.4 are no longer supported.
  209. - Update IPv6 support for Red Hat Linux 6.1
  210. - Fix generation of version.h on Win32
  211. - Add VC++ project file to build the test suite under Win32
  212. - Add extra debug code to the mbus library
  213. - Rewrite mbus code: mbus_parser.[ch] exist now, and include routines moved from the
  214.   main mbus.[ch] files. Note that the interface to the mbus_parse_*() functions has
  215.   now changed and is not backwards compatible.
  216. - Remove the mbus_addr() function, add an extra parameter to mbus_init() instead.
  217. * 28 January 2000
  218. v1.1.1  - Add extra debugging code
  219. * 1 February 2000
  220. v1.1.2  - Add routines for handling NTP format timestamps, in ntp.[ch]
  221. - Add udp_addr_valid.
  222. - Fix cname setup for Win32.
  223. - Add udp_init_if() call, to open a UDP/IP socket bound to a
  224.   specific interface
  225. - Add rtp_init_if() call, to open an RTP socket bound to a 
  226.   specific interface
  227. - Add asarray.[ch] string holding associative array.
  228. - Fix compilation with -Wwrite-strings and -Wcast-align
  229. - Split mbus_addr_match() and mbus_add_identical() into mbus_addr.[ch]
  230. * 14 February 2000
  231. v1.1.3  - Fix debug_set_core_dir() when not debugging.
  232. * 14 February 2000
  233. v1.1.4  - Add tests for mbus_parser.c/mbus_addr.c and fix bugs found
  234. - Fix use of free()'d memory in mbus.c
  235. * 24 February 2000
  236. v1.1.5  - Remove SunOS and Solaris defines from the configure script, they
  237.   shouldn't be necessary any longer.
  238. - Add workaround for missing getaddrinfo() on some platforms.
  239. - Remove most of the abort() statements from udp_init(), we now
  240.   return NULL in most cases of an error.
  241. - Fix header extension handling when padding bit set for RTP packets.
  242. - Change RTP event type #defines into rtp_event_type so compiler can
  243.   check all cases are covered in decision blocks.
  244. - Fix waiting_ack next is set to null when message is put on ack list.
  245. - Add check for udp socket allocation success in mbus_init.
  246. - Add get_appname to util.[ch].
  247. - Bound ttl to max 127 in rtp.c rather than asserting <= 127.
  248. - Change rtp_init to return NULL in rtp.c if ports or ttl 
  249.   inappropriate.
  250. - Clarify that rtp_recv(), rtp_send_data() and rtp_send_ctrl() take an
  251.   RTP format timestamp for the current time.
  252. * 17 April 2000
  253. v1.2.0 - Add udp_fd() function, to retrieve the underlying file descriptor.
  254. - udp_get_host_addr4() will now return NULL on failure, and leave
  255.   errno set.
  256. - Workaround failure to get host IP address when setting the RTP
  257.   CNAME (we use user@127.0.0.1 as the CNAME in this case). 
  258. - Fix rtp_send_data() to correctly handle header extensions. This required
  259.   a change to the API: the extn_len parameter now counts the length on the
  260.   extension in 32 bit words minus one, and there is an additional extn_type
  261.   parameter. If you don't use header extensions in your application, set the
  262.   additional parameter to zero. 
  263. - Fix reception of packets with RTP header extension.
  264. * 16 May 2000
  265. v1.2.1 * 16 June 2000 [rat v4.2.5]
  266. v1.2.2 - Fix bug in mbus transmit code which caused messages to have the same sequence
  267.   number as the preceeding ack.
  268. - Remove get_appname() function from util.[ch], since it didn't
  269.   work in all cases (sometimes argv[0] doesn't contain anything
  270.   sensible).
  271. - Fix RTP header extension code (patch from Jori <jori@lumumba.luc.ac.be>)
  272.   as part of RTP interoperability tests.
  273. - FreeBSD 4.1 doesn't support binding to an IPv6 multicast address, must
  274.   bind to in6addr_any instead (reported by Shirasaki Yasuhiro).
  275. - Fix validation of RTCP packets with padding (reported by Vladimir Brauner).
  276. - Fix padding octet count in RTCP packets sent with padding (Vladimir Brauner).
  277. - Fix RTCP timer reconsideration (Vladimir Brauner).
  278. * 22 August 2000 [rat v4.2.8]
  279. v1.2.3 - Add prototype for rtp_del_csrc() which will be needed by the
  280.     mixer in rat.
  281. * 8 September 2000 [rat v4.2.9]
  282. v1.2.4 - Implement rtp_add_csrc() and rtp_del_csrc().
  283. - ifdef'ed out FreeBSD bug check in test_net_udp.c for Win32.  
  284.   Prevents compilation of test cases otherwise.  Reported by Micheal
  285.   Stovenour <michael.stovenour@lucent.com>.
  286. * 1 November 2000 [rat v4.2.10]
  287. v1.2.5 - More informative error message when the lock on the mbus configuration 
  288.   file cannot be gained.
  289. - rtp_init()/rtp_init_if() now take "const char *" for the address
  290. - Fix expiration of our own SSRC from the RTP database, if filtering our
  291.   packets.
  292. - Mark entries in the RTP source database as active senders if we can an 
  293.   SR packet from them.
  294. - Cleanup RTP database once per second, rather than once per reporting 
  295.   interval. This is needed to ensure that reverse reconsideration works
  296.   correctly, and sources are correctly deleted after BYEs are received.
  297. - Fix reverse reconsideration of the RTCP interval
  298. - Change socket_error to support formatted messages.
  299. - Add socket_error messages for gethostbyname failures.
  300. - Include lower layer overhead when calculating average RTCP size
  301.   (patch from Timur Friedman).
  302. - Add support for SDES PRIV (the correct formatting of the PRIV item
  303.   into prefix length, prefix and value is left to the caller).
  304. - Change xmalloc to fill allocated buffer with dummy value when DEBUG 
  305.   is defined.  Change DEBUG_MEM version to use same dummy value rather
  306.   than a random value, reduces chances of uninitialized pointers 
  307.   trashing data before crashing.
  308. - Add callback types to rtp.h - rtp_callback and rtcp_app_callback.
  309. - For consistency rtp_{get,set}opt -> rtp_{get,set}_option.
  310. - Remove unnecessary components from qfdes enumeration declarations.
  311. - New directories (src, tests, docs, examples).
  312. - Fixed Win32 .{dsw,dsp} files for new directory structure.
  313. - Documented net_udp.c.
  314. - Move strfind to util.[ch] from mbus_addr.[ch].
  315. - Fix CSRC handling (patch from Ivo Sedlacek <ivo.sedlacek@anfdata.cz>)
  316. - Fix uninitialized field in SDES PRIV handling (Robert Olson)
  317. - Documented debug.[ch], hmac.[ch], md5.[ch], memory.[ch], rtp.[ch].
  318. - Added small rtp example. 
  319. - Change configure to only select doc for build if gtkdoc installed.
  320. * 5 April 2001 [rat v4.2.14]
  321. 1.2.6 - Fix so that we no longer send an RTCP BYE if we leave the session 
  322.           before sending any other packets.
  323. - Fix initial estimate of average RTCP packet size.
  324. - Implement RTCP BYE reconsideration.
  325. - Fix RTCP transmission interval.
  326. - Fix handling of probationary sources in the RTP code (a source is
  327.   no longer treated as probationary if we've received RTCP packet 
  328.   from it).
  329. * 24 April 2001 [rat v4.2.16]
  330. 1.2.7 - Add support for Rijndael encryption to the RTP library, contributed
  331.           by Robert Olson <olson@mcs.anl.gov>.
  332. - Fix IPv6 support on Linux
  333. - Add configuration for Windows 2000 IPv6 stack
  334. - Connect/disconnect to socket before/after getsockname call to make 
  335.   it work
  336. * 18 May 2001 [rat v4.2.17]
  337. 1.2.8   - Created a new socket for use for getsockname - there were too
  338.           many bugs with disconnecting an IPv6 connected socket.
  339.     - Fixed include ordering for Win2k.
  340.     * 25 May 2001 [rat v4.2.18] [nte v2.2]
  341. Still to do...
  342. - IPv6 code sometimes doesn't get the correct interface address,
  343.   since it does a gethostbyname() and looks that up, yet that can
  344.   return the IPv4 hostname only on some machines.
  345. - Doesn't do DNS AAAA lookups when given a name rather than an IP address.
  346. - Mbus code should check timestamp in received headers, and discard
  347.   messages if it decreases, as a hinderance to replay attacks.
  348. - Mbus code should be more paranoid about handling garbage inputs, we
  349.   can likely get all sorts of buffer overflows by feeding random data
  350.   into it.
  351. - rtp_recv should split into rtp_select and rtp_recv. Jitter issues
  352.   otherwise, as pointed out by Orion.
  353. - Allow a callback for background processing during mbus_rendezvous_*()
  354. - mbus_exit() queues an mbus.bye() message, but that never gets sent.
  355. - Handling of SSRC collisions is broken.
  356. - When weak RTP validation is enabled, spurious sources can be
  357.   added to the database (from the CSRC area of a packet?). Reported
  358.   by Xiaotao Wu <xiaotaow@cs.columbia.edu>
  359. - RTP estimate of lower layer overhead is IPv4 specific.