Newer
Older
NetAddr-IP / Lite / Util / Changes
@Michael Robinton Michael Robinton on 21 Oct 2014 7 KB Import of MIKER/NetAddr-IP-4.050 from CPAN.
  1. 1.42 Fri Oct 21 10:34:46 PDT 2011
  2. Socket6 prior to version 0.23 does not have AF_INET6 in the
  3. EXPORT_OK array, modify InetBase.pm v0.2 to work around this.
  4.  
  5. 1.41 Sat Oct 15 17:26:21 PDT 2011
  6. add inet_pton, inet_ntop, AF_INET, AF_INET6
  7.  
  8. modify inet_n2dx and inet_n2ad to
  9. recognize the new 128 bit IPv4 format
  10. ::FFFF:FFFF:0:0
  11.  
  12. replace isIPv4 with a pure perl version for portablity
  13.  
  14. split the following into NetAddr::IP::InetBase v0.01
  15. to provide better long term support for IPv6
  16. inet_aton
  17. inet_ntoa
  18. ipv6_aton
  19. ipv6_n2x
  20. ipv6_n2d
  21. inet_any2n
  22. inet_n2dx
  23. inet_n2ad
  24. inet_ntop
  25. inet_pton
  26. packzeros
  27. isIPv4
  28. isNewIPv4
  29. isAnyIPv4
  30. AF_INET
  31. AF_INET6
  32.  
  33. 1.40 Sat Oct 8 01:33:44 PDT 2011
  34. remove debug print statement from Util.pm
  35.  
  36. 1.39 Thu Oct 6 23:41:42 PDT 2011
  37. really correct missing internal reference
  38.  
  39. 1.38 Thu Oct 6 20:20:33 PDT 2011
  40. corrected missing internal reference to inet_4map6
  41.  
  42. 1.37 Thu Oct 6 18:23:04 PDT 2011
  43. addid isAnyIPv4, isNewIPv4, inet_4map6
  44. revised naip_gethostbyname
  45. to conform to Perl's gethostbyname output
  46.  
  47. 1.36 Sat Feb 19 10:04:00 PST 2011
  48. correction to use of package lexicals
  49.  
  50. thanks to mishikal@yahoo.com for spotting the bug and to
  51. Mark Martinec mark.martinec+ama...@ijs.si for the solution.
  52.  
  53. 1.35 Tue Nov 16 16:28:37 PST 2010
  54. naip_gethostbyname modified to return undef instead of
  55. 0 (zero) on failure
  56.  
  57. thanks to Terry Cassidy enaudishaylee@tc17.com for the bug report
  58.  
  59. move sub's ipv6_n2d and ipv6_n2x to non-autosplit portion
  60. of module to eliminate warnings during autosplit of "our" variables
  61.  
  62. thanks to Nicholas Bamber <nicholas@periapt.co.uk>
  63. Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=517361
  64.  
  65. 1.34 Wed Sep 29 10:32:50 PDT 2010
  66. Conditionalize import of AF_INET6 in Util.pm
  67. NetAddr::IP::UtilPolluted
  68.  
  69. 1.33 Tue Sep 21 17:50:50 PDT 2010
  70. Add UtilPolluted namespace to contain name space pollution
  71. created by "use Socket" when invoking Socket6.
  72.  
  73. 1.32 Wed May 12 14:18:20 PDT 2010
  74. In Util.xs,
  75. changed netswap() to postincrement
  76. *a++ = to *a and added increment after save to mollify some
  77. picky compilers that return possible undefined behavior.
  78.  
  79. changed type of _128x10 to 'void'
  80.  
  81. 1.31 Tue Jun 9 10:31:11 PDT 2009
  82. ferret out shell value for Makefile.PL when calling
  83. ./configure for systems where the 'x' bit gets lost
  84. due to bug in Archive::Tar
  85.  
  86. 1.30 Sat Mar 7 16:35:33 PST 2009
  87. make the compiler test check the environment for
  88. CC before using Perl's default compiler
  89.  
  90. 1.29 Sat Mar 7 16:15:18 PST 2009
  91. revised compiler test in Makefile.PL for Util v1.29
  92. to accomodate picky Solaris "cc"
  93.  
  94. 1.28 Wed Dec 17 14:14:06 PST 2008
  95. set uninitialized "carry" in XS bin2bcd to zero
  96.  
  97. 1.27 Tue Dec 9 12:00:08 PST 2008
  98. revised UtilPP v1.7 to work around perl 5.8.4
  99. failures with certain @_ operations of goto &sub...
  100. see perl bug [ 23429]. Unfortunately, perl-5.8.4 is
  101. the distribution of choice for many solaris boxes
  102.  
  103. 1.26 Fri Nov 28 23:19:01 PST 2008
  104. revised XS code to be full re-entrant... thread safe.
  105. removed all traces of mutex locks
  106. removed function 'threads' here an in UtilPP v1.6
  107.  
  108. 1.25 Tue Nov 18 19:08:56 PST 2008
  109. correct documentation error in Util_PP v1.5
  110.  
  111. add threads reporting to Util.xs and UtilPP
  112.  
  113. added what is hopefully thread safe operation via
  114. serialization. Must be invoked by "--with-threads"
  115.  
  116. 1.24 Wed Nov 5 18:13:20 PST 2008
  117. Clean up Makefile.PL to check actual required link
  118. libraries against the perl build for consistency
  119.  
  120. 1.23 Sun Nov 2 10:10:38 PST 2008
  121. add missing headers in configure and localconf.h for Solaris inet_xton
  122. thanks to Karl Bunch <karl@digilink.net> for spotting the bug.
  123.  
  124. 1.22 Wed Oct 22 14:54:12 PDT 2008
  125. eliminated dependence on PL_sawampersand
  126. thanks to Mark Martinec <Mark.Martinec@ijs.si>
  127. for spotting this and submitting a patch.
  128.  
  129. force -noxs mode for Win32
  130.  
  131. use autoconf to configure 'C' build
  132.  
  133. 1.21 Thu Oct 16 19:35:33 PDT 2008
  134. again... clear build bug for Win32
  135. and lets get the version number right since it appears
  136. that it was up-rev'd at some point to 1.xx
  137.  
  138. 0.20 Mon Oct 6 13:07:34 PDT 2008
  139. clear build bug for Win32
  140.  
  141. 0.19 Sat Sep 27 13:36:58 PDT 2008
  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. 0.18 Sun Aug 6 10:48:25 PDT 2006
  149. correct shiftleft documentation
  150. correct mask4to6 documentation
  151.  
  152. 0.17 Thu Jul 6 10:46:48 PDT 2006
  153. update 'siteconf line 1608' to fix empty variable in inet_aton test
  154. update 'siteconf line 1636' to fix empty variable in inet_pton test
  155. add missing colon at t/notcontiguous.t line 66
  156.  
  157. 0.16 Sun Jun 25 16:13:00 PDT 2006
  158. fixed ->new() issues with long digit strings ->new('::fffff')
  159. and non hex digits ->new('::foo').
  160. Thanks to Radoslaw Zielinski <radek42@gmail.com>
  161. for spotting those bugs
  162.  
  163. 0.15 Tue Jun 13 14:42:34 PDT 2006
  164. UtilPP.pm v0.07 & Util.xs 'shiftleft' so that the original
  165. argument is returned when the shift count is '0' or missing
  166.  
  167. 0.14 Tue Jun 6 08:37:01 PDT 2006
  168. add logic to check LIBS => [-lfiles]
  169. individually. ExtUtils::xxx does a bad job and
  170. leaves libs that do not exist in the list
  171. which causes 'siteconf' to blow up on missing libs
  172. on perl 5.053 (and probably others)
  173.  
  174. 0.13 Tue Jun 6 08:33:11 PDT 2006
  175. added to xs file, 'hopefully' to allow build on windoze platforms
  176.  
  177. 0.12 Tue Jun 6 08:21:12 PDT 2006
  178. add logic to makefile so 'siteconfig' and C libs
  179. are not used in PurePerl mode
  180.  
  181. 0.11 Mon Jun 5 14:45:09 PDT 2006
  182. fix Sparc problems
  183. 1) add workaround for OS's that do not have inet_aton
  184.  
  185. 2) add workaround for compilers that do not understand
  186. #if MACRO1 == MACRO2
  187.  
  188. 0.10 Sat Jun 3 19:07:51 PDT 2006
  189. add site configuration to supply u_intxx_t vars
  190. for Sun OS and others that don't have them
  191.  
  192. 0.09 Sun May 7 18:06:43 PDT 2006
  193. UtilPP.pm v0.06, removed unnecessary pack(unpack) sequences
  194. to speed up ipv4->6, ipv6->4 conversions
  195.  
  196. 0.08 Wed Apr 26 18:33:12 PDT 2006
  197. correct documentation error
  198. add ipv6to4
  199.  
  200. 0.07 Sun Apr 23 16:11:56 PDT 2006
  201. correct reporting error in UtilPP v0.04 for
  202. incorrect argument length in ipv4 -> 6 conversions
  203.  
  204. add conditional netaddr conversion functions
  205. ipanyto6, maskanyto6 to Util.xs and UtilPP v0.05
  206.  
  207. 0.06 Tue Apr 18 16:50:53 PDT 2006
  208. add ipv4to6, mask4to6 to Util.pm and UtilPP.pm v0.03
  209.  
  210. 0.05 Sat Apr 15 15:48:17 PDT 2006
  211. Fixed some typo's in Makefile.PL that
  212. failed to update README during build
  213.  
  214. 0.04 Wed Apr 12 15:43:33 PDT 2006
  215. add Util_IS.pm to guarantee that the XS lib is not
  216. loaded if a previous incarnation of the same version
  217. has previously been installed on the system and the
  218. module is built with -noxs
  219.  
  220. 0.03 Tue Apr 4 21:55:35 PDT 2006
  221. update minisocket to perl-5.9.3, add header
  222. file for backwards compatibility
  223.  
  224. add function 'notcontiguous' to return cidr size
  225. and check for spurious bits in the network mask
  226.  
  227. 0.02 Fri Mar 31 12:44:15 PST 2006
  228. added test for illegal characters to ipv6_aton
  229.  
  230. added UtilPP for Pure Perl functionality for the
  231. WinTel folks that don't have gcc on their systems
  232.  
  233. 0.01 Tue Mar 28 16:42:44 PST 2006
  234. initial release
  235.