Newer
Older
NetAddr-IP / Lite / Changes
@Michael Robinton Michael Robinton on 21 Oct 2014 8 KB Import of MIKER/NetAddr-IP-4.042 from CPAN.
  1. Revision history for Perl extension NetAddr::IP::Lite
  2.  
  3. 1.27 Tue Mar 22 15:26:02 PDT 2011
  4. Update Lite.pm to encompass treatment of /31 and /127
  5. point-to-point networks as described in RFC 3021
  6.  
  7. NOTE: for /31's and /127's
  8. this changes the behavior of the following methods:
  9. first returns the "network" address
  10. last returns the "broadcast" address
  11. nth index 0 returns "network" addr instead of undef
  12. nth index 1 returns "broadcast" addr instead of undef
  13. num returns 2 instead of 0 (zero)
  14.  
  15. "old_nth" behavior is unchanged
  16.  
  17. Thanks to Todd Caine todd.caine@gmail.com for pointing this out.
  18.  
  19. 1.26 Tue Mar 8 15:18:16 PST 2011
  20. Updated "sub num" to support usable IP ranges greater than 2**32
  21.  
  22. Thanks to Jan Ploski jan@plosquare.com for finding this bug
  23.  
  24. 1.25 Sat Feb 19 10:04:00 PST 2011
  25. correction to use of Util.pm package lexicals
  26.  
  27. thanks to mishikal@yahoo.com for spotting the bug and to
  28. Mark Martinec mark.martinec+ama...@ijs.si for the solution.
  29.  
  30. 1.24 Fri Dec 17 17:47:47 PST 2010
  31. Modify subs "new" and "new6" to accomodate
  32. Cisco mask syntax that uses space instead of "/" for a separator
  33. This eliminates the need for "new_cis" and "newcis6" which are now
  34. deprecated.
  35.  
  36. Modify t/v4-cnew.t and add t/v6-cnew.t to test the above
  37.  
  38. 1.23 Fri Nov 19 10:48:01 PST 2010
  39. add :upper and :lower to Lite.pm v1.23
  40. add comments about rfc5952 requirement for lowercase ipV6 notation
  41. add test for :lower
  42.  
  43. 1.22 Tue Nov 16 16:28:37 PST 2010
  44. update new6 to properly classify short ipv4 notation
  45. i.e. 127/8 with test for ":" rather than match for \d.\d.\d.\d
  46. thanks to Steve Huff (SHUFF) * shuff@cpan.org for
  47. spotting that bug.
  48.  
  49. update t/v4-new.t for deprecated array syntax in perl 5.13
  50. was: qw(...stuff...)
  51. is: (qw(...stuff...))
  52.  
  53. thanks to Todd Rinaldo <toddr@cpan.org> for reporting this
  54.  
  55. 1.21 Thu Oct 28 14:26:19 PDT 2010
  56. fix bug where new6 improperly assigns the mask value
  57. for and ipv4 address in 32 bit space instead of 128 bit space
  58.  
  59. Thanks to Mark Martinec and Steve Huff (SHUFF) * shuff@cpan.org
  60. for spotting and replicating that bug
  61.  
  62. added new_cis and new_cis6 to Lite.pm v1.21 to accomodate
  63. Cisco syntax that has IP and MASK seperated by a space.
  64.  
  65. Updated typo in documentation that left out example
  66. print new6 stuff
  67.  
  68. 1.20 Mon Oct 25 16:22:01 PDT 2010
  69. Updated _xnew to properly handle ipV6 notation of the form
  70. xxxx:xxxx:xxxx:xxxx:xxxx:xxxx, DDD
  71.  
  72. Thanks to Dusty Mabe <Dusty.Mabe@tekelec.com> for spotting this bug
  73.  
  74. 1.19 Wed Sep 29 10:32:50 PDT 2010
  75. Conditionalize import of AF_INET6 in Util.pm
  76. NetAddr::IP::UtilPolluted
  77.  
  78. 1.18 Wed Sep 22 13:39:08 PDT 2010
  79. Added overload => 'ne' and '!=' to Lite.pm
  80.  
  81. 1.17 Tue Sep 21 17:50:50 PDT 2010
  82. Pull Socket6 stuff out of Lite and put into
  83. NetAddr::IP::Util.pm in its own namespace
  84.  
  85. 1.16 Wed Aug 11 12:45:49 PDT 2010
  86. When using Socket6, pull in missing symbol PF_INET6, which may
  87. or may not be present, from Socket.
  88.  
  89. 1.15 Tue Jul 20 15:32:23 PDT 2010
  90. Resolve named hosts using gethostbyname, followed by gethostbyname6
  91. to determine whether to set ipV6 flag
  92.  
  93. Thanks to Dusty Mabe <Dusty.Mabe@tekelec.com> for spotting this bug
  94.  
  95. 1.14 Thu Jul 8 18:17:38 PDT 2010
  96. added support for the sub "new" to resolve host6 names
  97. if the OPTIONAL perl Socket6 module is available
  98.  
  99. 1.13 Tue Dec 9 16:00:35 PST 2008
  100. added missing regexp to classify arguments as BCD numbers,
  101. apparently this has been missing from NetAddr::IP::Lite
  102. since the first release.
  103. Thanks to Carlos Vicente cvicente@cpan.org for reporting this bug.
  104.  
  105. revised UtilPP v1.7 to work around perl 5.8.4
  106. failures with certain @_ operations of goto &sub...
  107. see perl bug [ 23429]. Unfortunately, perl-5.8.4 is
  108. the distribution of choice for many solaris boxes
  109.  
  110. 1.12 Sun Nov 23 19:32:59 PST 2008
  111. repaired missing sub Zeros
  112.  
  113. added minus (-) overloading to allow the subtraction
  114. of two NetAddr::IP objects to get the difference between
  115. the object->{addr}'s as a numeric value
  116. Thanks to Rob Riepel <riepel@networking.Stanford.EDU>
  117. for the initial code and inspiration for this enhancement
  118.  
  119. 1.11 Sat Nov 1 15:13:48 PST 2008
  120. add test for characters not allowed by rfc952 before
  121. the call to gethostbyname in sub new() for those people
  122. that insist on using deprecated functionality :aton
  123. and OS's that fail to notice calls to gethostbyname
  124. with binary arguments
  125.  
  126. 1.10 Wed Oct 22 14:54:12 PDT 2008
  127. add new no octal method for improperly formatted ipV4 addresses
  128.  
  129. In Util.pm v1.22, eliminated dependence on PL_sawampersand
  130. thanks to Mark Martinec <Mark.Martinec@ijs.si>
  131. for spotting this and submitting a patch.
  132.  
  133. In Util.pm v1.22, force -noxs mode for Win32
  134.  
  135. In Util.pm v1.22, use autoconf to configure 'C' build
  136.  
  137. 1.09 Thu Oct 16 19:35:33 PDT 2008
  138. again... clear build bug for Win32 in Util.pm v 1.21
  139.  
  140. 1.08 Sat Sep 27 12:27:28 PDT 2008
  141. in Util v0.19
  142. updated test for ENDIANess in siteconf
  143.  
  144. add test in inet_aton to detect overange IP dot quad values
  145. missed by some broken Socket implementations
  146. i.e. 256.1.1.1
  147.  
  148. 1.07 Tue Sep 2 19:09:57 PDT 2008
  149. in the off chance that NetAddr::IP::Lite objects are created
  150. and the caller later loads NetAddr::IP and expects to use
  151. those objects, let the AUTOLOAD routine find and redirect
  152. NetAddr::IP::Lite method and subroutine calls to NetAddr::IP.
  153.  
  154. updated t/v4-wnew.t so that non-existent
  155. domains are "really" not there
  156.  
  157. 1.06 Sat Jun 7 12:57:18 PDT 2008
  158. add method "new_from_aton" and related documentation
  159.  
  160. comparisons of the form <, >, <=, >=
  161. 10.0.0.0/24 {operator} 10.0.0.0/16
  162. return now return the comparison of the cidr value
  163. when the address portion is equal.
  164. NOTE: this comparison returns the comparison of the NUMERIC
  165. value of the CIDR. This produces the counter intuitive result
  166. that /24 > /16. There is logic to this, really! For proper
  167. operation of commands like "Compact" and "Coalesce", lists of
  168. netaddr objects must sort in ascending order. However, this
  169. conflicts with the requirement for larger netblocks to sort
  170. FIRST so as to include smaller ones. This logic extends to
  171. any requirement for a sort of netaddr objects. It should be
  172. further noted that the mixing of netaddr objects with varying
  173. IP addresses and CIDR allocations can lead to unexpected
  174. results since the comparisons done first on the IP portion
  175. and then on the CIDR portion. The documentation has been
  176. updated appropriately.
  177. Thanks to Peter DeVries for spotting this discrepancy
  178.  
  179. 1.05 undocumented
  180. 1.04 undocumented
  181.  
  182. 1.03 Sun Aug 6 10:48:25 PDT 2006
  183. update Util.pm v0.18 documentation
  184.  
  185. 1.02 Fri Aug 4 14:14:16 PDT 2006
  186. $isV6 global converted to a lexical variable within sub "_xnew"
  187. $Class global removed and replaced by calls to UNIVERSAL::isa
  188. Thanks to julian@mehnle.net for spotting problems related to
  189. using the Lite.pm with mod_perl
  190.  
  191. 1.01 Thu Jul 6 10:46:48 PDT 2006
  192. update v4-wnew.t to warn user of possible long wait
  193. update Util.pm v0.17 -- see Changes in that distro
  194.  
  195. 1.00 Mon Jun 26 13:34:00 PDT 2006
  196. changed behavior of ->nth and ->num
  197. to 'exactly' conform to the documentation
  198.  
  199. add :old_nth tag to preserve old behavior
  200. and update tests to check both
  201.  
  202. 0.12 Sun Jun 25 16:13:00 PDT 2006
  203. imported missing 'bcd2bin'
  204.  
  205. fixed Util->new() issues with long digit strings
  206. ->new('::fffff') and non hex digits ->new('::foo').
  207. Thanks to Radoslaw Zielinski <radek42@gmail.com>
  208. for spotting these 3 bugs
  209.  
  210. 0.11 Wed Jun 14 14:53:21 PDT 2006
  211. add 'sub new6' and related functionality to methods
  212. that print or return v4/6 information or text.
  213.  
  214. add $self->{isv6} flag for hint to ipV6 status
  215.  
  216. corrected bug in sub num that miscalculated the number
  217. of IP's in a net for /31 /32
  218.  
  219. 0.10 Tue Jun 13 14:07:46 PDT 2006
  220. bring 'sub new' into full compliance with NetAddr::IP,
  221. correct compatibility with for ==,>,<,=>,>=,<=>,cmp
  222. and update documentation to reflect actual implementation
  223.  
  224. add 'copy' function that return a completely new object
  225.  
  226. export (Zero Ones V4mask V4net)
  227.  
  228. update Util.pm v0.15 so shiftleft returns original
  229. argument when the shift count is zero or undefined
  230.  
  231. 0.09 Tue Jun 6 08:37:01 PDT 2006
  232. update Util/Makefile.PM to check for link libraries
  233. that ExtUtils::MakeMaker does not find properly
  234.  
  235. remove 'use warnings' from Lite.pm for backwards
  236. compatibility with older perl versions
  237.  
  238. 0.08 Tue Jun 6 08:33:11 PDT 2006
  239. update Util.xs for build on windoze
  240.  
  241. 0.07 Tue Jun 6 08:21:12 PDT 2006
  242. update NetAddr::IP::Util to v0.12
  243.  
  244. 0.06 Mon Jun 5 21:34:28 PDT 2006
  245. fix Sparc problems in Util v0.11
  246. 1) add workaround for OS's that do not have inet_aton
  247.  
  248. 2) add workaround for compilers that do not understand
  249. #if MACRO1 == MACRO2
  250.  
  251. 0.05 Sun May 7 18:06:43 PDT 2006
  252. updated UtilPP.pm v0.06 to remove unnecessary pack(unpack) sequences
  253. to speed up ipv6->4, ipv4->6 conversions
  254.  
  255. 0.04 Fri Apr 28 17:36:28 PDT 2006
  256. left Util/Makefile.pl out of the top level distro
  257.  
  258. 0.03 Fri Apr 28 17:26:51 PDT 2006
  259. oops! left prerequisite Util 0.08 in the Makefile
  260. when it is include in this distro
  261.  
  262. 0.02 Fri Apr 28 16:11:00 PDT 2006
  263. update Lite.pm to accept ->new('addr/mask')
  264. where addr and mask are both in IP address format
  265.  
  266. add test for above t/netaddr.t
  267.  
  268. 0.01 Wed Apr 26 19:03:18 PDT 2006
  269. initial release