[jira] [Commented] (NET-405) Support for IPv6 in SubnetUtils

2018-04-11 Thread Makoto Sakaguchi (JIRA)

[ 
https://issues.apache.org/jira/browse/NET-405?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16434734#comment-16434734
 ] 

Makoto Sakaguchi commented on NET-405:
--

Hi [~BigPandaToo],

My pull request on Github has not been merged to the official repository yet.

I do not know when it will be available.

> Support for IPv6 in SubnetUtils
> ---
>
> Key: NET-405
> URL: https://issues.apache.org/jira/browse/NET-405
> Project: Commons Net
>  Issue Type: Improvement
>Reporter: Marc Lefrancois
>Priority: Major
>
> Currently, we cannot use org.apache.commons.net.util.SubnetUtils with IPv6 
> addresses. This class will become less and less useful as more internet 
> device are only assigned IPv6 addresses since all available IPv4 address 
> blocks have now been attributed. 
> http://en.wikipedia.org/wiki/IPv4_address_exhaustion



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Closed] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo subclass

2017-05-10 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi closed NET-630.

Resolution: Done

> NET-630 Changed SubnetUtils for NEW SubnetInfo subclass
> ---
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> h2. Change log
> h3. 3/24/17
> * Replace The SubnetInfo subclass of SubnetUtils
> ** SubnetUtils.SubnetInfo works as the abstract class of IP4Subnet and 
> IP6Subnet
> * A few methods of SubnetUtils, rangeCheck, pop, and format, were moved into 
> the SubnetInfo subclass
> * The getAddressCount and getAllAddresses methods were reimplemented 
> ** For compatibility
> * Moved IP4Subnet and IP6Subnet classes into the until package
> h3. 3/23/17
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused others
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class
> * -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
> SubnetUtilsTest.java)-
> * -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
> * Improved comments
> https://github.com/apache/commons-net/pull/25



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (NET-405) Support for IPv6 in SubnetUtils

2017-05-10 Thread Makoto Sakaguchi (JIRA)

[ 
https://issues.apache.org/jira/browse/NET-405?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16005532#comment-16005532
 ] 

Makoto Sakaguchi commented on NET-405:
--

I made marge request on GitHub.
https://github.com/apache/commons-net/pull/25

Modification
* A few methods of SubnetUtils, rangeCheck, pop, and format, were moved into 
the SubnetInfo subclass
* Add IP4Subnet and IP6Subnet classes into the until package
** Provide subnet summary information for each IP address version

> Support for IPv6 in SubnetUtils
> ---
>
> Key: NET-405
> URL: https://issues.apache.org/jira/browse/NET-405
> Project: Commons Net
>  Issue Type: Improvement
>Reporter: Marc Lefrancois
>
> Currently, we cannot use org.apache.commons.net.util.SubnetUtils with IPv6 
> addresses. This class will become less and less useful as more internet 
> device are only assigned IPv6 addresses since all available IPv4 address 
> blocks have now been attributed. 
> http://en.wikipedia.org/wiki/IPv4_address_exhaustion



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo subclass

2017-03-26 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

h2. Change log
h3. 3/24/17
* Replace The SubnetInfo subclass of SubnetUtils
** SubnetUtils.SubnetInfo works as the abstract class of IP4Subnet and IP6Subnet
* A few methods of SubnetUtils, rangeCheck, pop, and format, were moved into 
the SubnetInfo subclass
* The getAddressCount and getAllAddresses methods were reimplemented 
** For compatibility
* Moved IP4Subnet and IP6Subnet classes into the until package

h3. 3/23/17
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others
* Removed the insignificant value representation, which are no reasons to be 
defined in this class
* -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)-
* -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
* Improved comments

https://github.com/apache/commons-net/pull/25

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

h2. Change log
h3. 3/24/17
* *SubnetInfo class into the subclass of SubnetUtil*
** SubnetUtils.SubnetInfo works as the abstract class of IP4Subnet and IP6Subnet
* A few methods of SubnetUtils, rangeCheck, pop, and format, were moved into 
the SubnetInfo subclass
* The getAddressCount and getAllAddresses methods were reimplemented 
** For compatibility
* Moved IP4Subnet and IP6Subnet classes into the until package

h3. 3/23/17
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others
* Removed the insignificant value representation, which are no reasons to be 
defined in this class
* -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)-
* -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
* Improved comments

https://github.com/apache/commons-net/pull/25


> NET-630 Changed SubnetUtils for NEW SubnetInfo subclass
> ---
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> h2. Change log
> h3. 3/24/17
> * Replace The SubnetInfo subclass of SubnetUtils
> ** SubnetUtils.SubnetInfo works as the abstract class of IP4Subnet and 
> IP6Subnet
> * A few methods of SubnetUtils, rangeCheck, pop, and format, were moved into 
> the SubnetInfo subclass
> * The getAddressCount and getAllAddresses methods were reimplemented 
> ** For compatibility
> * Moved IP4Subnet and IP6Subnet classes into the until package
> h3. 3/23/17
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused others
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class
> * -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
> SubnetUtilsTest.java)-
> * -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
> * Improved comments
> https://github.com/apache/commons-net/pull/25



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo subclass

2017-03-26 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

h2. Change log
h3. 3/24/17
* *SubnetInfo class into the subclass of SubnetUtil*
** SubnetUtils.SubnetInfo works as the abstract class of IP4Subnet and IP6Subnet
* A few methods of SubnetUtils, rangeCheck, pop, and format, were moved into 
the SubnetInfo subclass
* The getAddressCount and getAllAddresses methods were reimplemented 
** For compatibility
* Moved IP4Subnet and IP6Subnet classes into the until package

h3. 3/23/17
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others
* Removed the insignificant value representation, which are no reasons to be 
defined in this class
* -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)-
* -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
* Improved comments

https://github.com/apache/commons-net/pull/25

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

h2. Change log
h3. 3/24/17
* *SubnetInfo class into the subclass of SubnetUtil*
* A few methods of SubnetUtils, rangeCheck, pop, and format, were moved into 
the SubnetInfo subclass
* The getAddressCount and getAllAddresses methods were reimplemented 
** For compatibility
* Moved IP4Subnet and IP6Subnet classes into the until package

h3. 3/23/17
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others
* Removed the insignificant value representation, which are no reasons to be 
defined in this class
* -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)-
* -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
* Improved comments

https://github.com/apache/commons-net/pull/25


> NET-630 Changed SubnetUtils for NEW SubnetInfo subclass
> ---
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> h2. Change log
> h3. 3/24/17
> * *SubnetInfo class into the subclass of SubnetUtil*
> ** SubnetUtils.SubnetInfo works as the abstract class of IP4Subnet and 
> IP6Subnet
> * A few methods of SubnetUtils, rangeCheck, pop, and format, were moved into 
> the SubnetInfo subclass
> * The getAddressCount and getAllAddresses methods were reimplemented 
> ** For compatibility
> * Moved IP4Subnet and IP6Subnet classes into the until package
> h3. 3/23/17
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused others
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class
> * -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
> SubnetUtilsTest.java)-
> * -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
> * Improved comments
> https://github.com/apache/commons-net/pull/25



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo subclass

2017-03-26 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

h2. Change log
h3. 3/24/17
* *SubnetInfo class into the subclass of SubnetUtil*
* A few methods of SubnetUtils, rangeCheck, pop, and format, were moved into 
the SubnetInfo subclass
* The getAddressCount and getAllAddresses methods were reimplemented 
** For compatibility
* Moved IP4Subnet and IP6Subnet classes into the until package

h3. 3/23/17
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others
* Removed the insignificant value representation, which are no reasons to be 
defined in this class
* -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)-
* -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
* Improved comments

https://github.com/apache/commons-net/pull/25

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

h2. Change log
h3. 3/24/17
* *SubnetInfo class into the subclass of SubnetUtil*
* A few methods of SubnetUtils, rangeCheck, pop, and format, were moved into 
SubnetUtils.SubnetInfo.
* The getAddressCount and getAllAddresses methods were reimplemented 
** For compatibility
* Moved IP4Subnet and IP6Subnet classes into the until package

h3. 3/23/17
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others
* Removed the insignificant value representation, which are no reasons to be 
defined in this class
* -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)-
* -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
* Improved comments

https://github.com/apache/commons-net/pull/25


> NET-630 Changed SubnetUtils for NEW SubnetInfo subclass
> ---
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> h2. Change log
> h3. 3/24/17
> * *SubnetInfo class into the subclass of SubnetUtil*
> * A few methods of SubnetUtils, rangeCheck, pop, and format, were moved into 
> the SubnetInfo subclass
> * The getAddressCount and getAllAddresses methods were reimplemented 
> ** For compatibility
> * Moved IP4Subnet and IP6Subnet classes into the until package
> h3. 3/23/17
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused others
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class
> * -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
> SubnetUtilsTest.java)-
> * -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
> * Improved comments
> https://github.com/apache/commons-net/pull/25



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo subclass

2017-03-26 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

h2. Change log
h3. 3/24/17
* *SubnetInfo class into the subclass of SubnetUtil*
* A few methods of SubnetUtils, rangeCheck, pop, and format, were moved into 
SubnetUtils.SubnetInfo.
* The getAddressCount and getAllAddresses methods were reimplemented 
** For compatibility
* Moved IP4Subnet and IP6Subnet classes into the until package

h3. 3/23/17
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others
* Removed the insignificant value representation, which are no reasons to be 
defined in this class
* -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)-
* -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
* Improved comments

https://github.com/apache/commons-net/pull/25

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

h2. Change log
h3. 3/24/17
* *SubnetInfo class into the subclass of SubnetUtil*
** The method rangeCheck, pop, and format of SubnetUtils was moved into 
SubnetUtils.SubnetInfo.
* The getAddressCount and getAllAddresses methods were reimplemented 
** For compatibility
* Moved IP4Subnet and IP6Subnet classes into the until package

h3. 3/23/17
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others
* Removed the insignificant value representation, which are no reasons to be 
defined in this class
* -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)-
* -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
* Improved comments

https://github.com/apache/commons-net/pull/25


> NET-630 Changed SubnetUtils for NEW SubnetInfo subclass
> ---
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> h2. Change log
> h3. 3/24/17
> * *SubnetInfo class into the subclass of SubnetUtil*
> * A few methods of SubnetUtils, rangeCheck, pop, and format, were moved into 
> SubnetUtils.SubnetInfo.
> * The getAddressCount and getAllAddresses methods were reimplemented 
> ** For compatibility
> * Moved IP4Subnet and IP6Subnet classes into the until package
> h3. 3/23/17
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused others
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class
> * -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
> SubnetUtilsTest.java)-
> * -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
> * Improved comments
> https://github.com/apache/commons-net/pull/25



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo subclass

2017-03-26 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

h2. Change log
h3. 3/24/17
* *SubnetInfo class into a subclass of SubnetUtil*
** The method rangeCheck, pop, and format of SubnetUtils was moved into 
SubnetUtils.SubnetInfo.
* The getAddressCount and getAllAddresses methods were reimplemented 
** For compatibility
* Moved IP4Subnet and IP6Subnet classes into the until package

h3. 3/23/17
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others
* Removed the insignificant value representation, which are no reasons to be 
defined in this class
* -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)-
* -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
* Improved comments

https://github.com/apache/commons-net/pull/25

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

h2. Change log
h3. 3/24/17
* *SubnetInfo class into a subclass of SubnetUtil
** The method rangeCheck, pop, and format of SubnetUtils was moved into 
SubnetUtils.SubnetInfo.
* The getAddressCount and getAllAddresses methods were reimplemented 
** For compatibility
* Moved IP4Subnet and IP6Subnet classes into the until package

h3. 3/23/17
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others
* Removed the insignificant value representation, which are no reasons to be 
defined in this class
* -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)-
* -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
* Improved comments

https://github.com/apache/commons-net/pull/25


> NET-630 Changed SubnetUtils for NEW SubnetInfo subclass
> ---
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> h2. Change log
> h3. 3/24/17
> * *SubnetInfo class into a subclass of SubnetUtil*
> ** The method rangeCheck, pop, and format of SubnetUtils was moved into 
> SubnetUtils.SubnetInfo.
> * The getAddressCount and getAllAddresses methods were reimplemented 
> ** For compatibility
> * Moved IP4Subnet and IP6Subnet classes into the until package
> h3. 3/23/17
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused others
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class
> * -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
> SubnetUtilsTest.java)-
> * -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
> * Improved comments
> https://github.com/apache/commons-net/pull/25



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo subclass

2017-03-26 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

h2. Change log
h3. 3/24/17
* *SubnetInfo class into the subclass of SubnetUtil*
** The method rangeCheck, pop, and format of SubnetUtils was moved into 
SubnetUtils.SubnetInfo.
* The getAddressCount and getAllAddresses methods were reimplemented 
** For compatibility
* Moved IP4Subnet and IP6Subnet classes into the until package

h3. 3/23/17
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others
* Removed the insignificant value representation, which are no reasons to be 
defined in this class
* -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)-
* -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
* Improved comments

https://github.com/apache/commons-net/pull/25

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

h2. Change log
h3. 3/24/17
* *SubnetInfo class into a subclass of SubnetUtil*
** The method rangeCheck, pop, and format of SubnetUtils was moved into 
SubnetUtils.SubnetInfo.
* The getAddressCount and getAllAddresses methods were reimplemented 
** For compatibility
* Moved IP4Subnet and IP6Subnet classes into the until package

h3. 3/23/17
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others
* Removed the insignificant value representation, which are no reasons to be 
defined in this class
* -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)-
* -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
* Improved comments

https://github.com/apache/commons-net/pull/25


> NET-630 Changed SubnetUtils for NEW SubnetInfo subclass
> ---
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> h2. Change log
> h3. 3/24/17
> * *SubnetInfo class into the subclass of SubnetUtil*
> ** The method rangeCheck, pop, and format of SubnetUtils was moved into 
> SubnetUtils.SubnetInfo.
> * The getAddressCount and getAllAddresses methods were reimplemented 
> ** For compatibility
> * Moved IP4Subnet and IP6Subnet classes into the until package
> h3. 3/23/17
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused others
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class
> * -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
> SubnetUtilsTest.java)-
> * -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
> * Improved comments
> https://github.com/apache/commons-net/pull/25



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo subclass

2017-03-26 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

h2. Change log
h3. 3/24/17
* *SubnetInfo class into a subclass of SubnetUtil
** The method rangeCheck, pop, and format of SubnetUtils was moved into 
SubnetUtils.SubnetInfo.
* The getAddressCount and getAllAddresses methods were reimplemented 
** For compatibility
* Moved IP4Subnet and IP6Subnet classes into the until package

h3. 3/23/17
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others
* Removed the insignificant value representation, which are no reasons to be 
defined in this class
* -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)-
* -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
* Improved comments

https://github.com/apache/commons-net/pull/25

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

h2. Change log
h3. 3/24/17
* *SubnetInfo class into a subclass of SubnetUtil*
** The method rangeCheck, pop, and format of SubnetUtils was moved into 
SubnetUtils.SubnetInfo.
* The getAddressCount and getAllAddresses methods were reimplemented 
** For compatibility
* Moved IP4Subnet and IP6Subnet classes into the until package

h3. 3/23/17
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others
* Removed the insignificant value representation, which are no reasons to be 
defined in this class
* -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)-
* -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
* Improved comments

https://github.com/apache/commons-net/pull/25


> NET-630 Changed SubnetUtils for NEW SubnetInfo subclass
> ---
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> h2. Change log
> h3. 3/24/17
> * *SubnetInfo class into a subclass of SubnetUtil
> ** The method rangeCheck, pop, and format of SubnetUtils was moved into 
> SubnetUtils.SubnetInfo.
> * The getAddressCount and getAllAddresses methods were reimplemented 
> ** For compatibility
> * Moved IP4Subnet and IP6Subnet classes into the until package
> h3. 3/23/17
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused others
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class
> * -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
> SubnetUtilsTest.java)-
> * -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
> * Improved comments
> https://github.com/apache/commons-net/pull/25



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo subclass

2017-03-26 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

h2. Change log
h3. 3/24/17
* *SubnetInfo class into a subclass of SubnetUtil*
** The method rangeCheck, pop, and format of SubnetUtils was moved into 
SubnetUtils.SubnetInfo.
* The getAddressCount and getAllAddresses methods were reimplemented 
** For compatibility
* Moved IP4Subnet and IP6Subnet classes into the until package

h3. 3/23/17
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others
* Removed the insignificant value representation, which are no reasons to be 
defined in this class
* -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)-
* -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
* Improved comments

https://github.com/apache/commons-net/pull/25

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

h2. Change log
h3. 3/24/17
* *SubnetInfo class into a subclass of SubnetUtil*
* The getAddressCount and getAllAddresses methods were reimplemented 
** For compatibility
* Moved IP4Subnet and IP6Subnet classes into the until package

h3. 3/23/17
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others
* Removed the insignificant value representation, which are no reasons to be 
defined in this class
* -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)-
* -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
* Improved comments

https://github.com/apache/commons-net/pull/25


> NET-630 Changed SubnetUtils for NEW SubnetInfo subclass
> ---
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> h2. Change log
> h3. 3/24/17
> * *SubnetInfo class into a subclass of SubnetUtil*
> ** The method rangeCheck, pop, and format of SubnetUtils was moved into 
> SubnetUtils.SubnetInfo.
> * The getAddressCount and getAllAddresses methods were reimplemented 
> ** For compatibility
> * Moved IP4Subnet and IP6Subnet classes into the until package
> h3. 3/23/17
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused others
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class
> * -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
> SubnetUtilsTest.java)-
> * -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
> * Improved comments
> https://github.com/apache/commons-net/pull/25



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Closed] (NET-629) NET-629 Added IP4Subnet and IP6Subnet classes

2017-03-26 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-629?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi closed NET-629.

Resolution: Done

> NET-629 Added IP4Subnet and IP6Subnet classes
> -
>
> Key: NET-629
> URL: https://issues.apache.org/jira/browse/NET-629
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> IP4Subnet and IP6Subnet classes which provide subnet summary information for 
> each IP address version.
> Change log
> * The method rangeCheck, pop, and format of SubnetUtils was moved to 
> SubnetInfo in the subnet package.
> * Added asInteger, getCidrSignature, and getAllAddresses methods of 
> SubnetUtils.SubnetInfo to SubnetInfo in the subnet package.
> * Changed the parameter type of isInRange from short array to integer array.
> * Renamed getAddressCount() to getAddressCountString()
> ** The old name, getAddressCount(), was the obsoleted name and confused 
> others.
> * Improved comments



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-629) NET-629 Added IP4Subnet and IP6Subnet classes

2017-03-26 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-629?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-629:
-
Description: 
IP4Subnet and IP6Subnet classes which provide subnet summary information for 
each IP address version.

Change log
* The method rangeCheck, pop, and format of SubnetUtils was moved to SubnetInfo 
in the subnet package.
* Added asInteger, getCidrSignature, and getAllAddresses methods of 
SubnetUtils.SubnetInfo to SubnetInfo in the subnet package.
* Changed the parameter type of isInRange from short array to integer array.
* Renamed getAddressCount() to getAddressCountString()
** The old name, getAddressCount(), was the obsoleted name and confused others.
* Improved comments

  was:
IP4Subnet and IP6Subnet classes which provide subnet summary information for 
each IP address version.

Change log
* The method rangeCheck, pop, and format of SubnetUtils was moved to SubnetInfo 
in the subnet package.
* Added asInteger, getCidrSignature, and getAllAddresses methods of 
SubnetUtils.SubnetInfo to SubnetInfo in the subnet package.
* Changed the parameter type of isInRange from short array to integer array.
* Renamed getAddressCount() to getAddressCountString()
** The old name, getAddressCount(), was the obsoleted name and confused others.
* Improved comments

https://github.com/apache/commons-net/pull/22


> NET-629 Added IP4Subnet and IP6Subnet classes
> -
>
> Key: NET-629
> URL: https://issues.apache.org/jira/browse/NET-629
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> IP4Subnet and IP6Subnet classes which provide subnet summary information for 
> each IP address version.
> Change log
> * The method rangeCheck, pop, and format of SubnetUtils was moved to 
> SubnetInfo in the subnet package.
> * Added asInteger, getCidrSignature, and getAllAddresses methods of 
> SubnetUtils.SubnetInfo to SubnetInfo in the subnet package.
> * Changed the parameter type of isInRange from short array to integer array.
> * Renamed getAddressCount() to getAddressCountString()
> ** The old name, getAddressCount(), was the obsoleted name and confused 
> others.
> * Improved comments



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Closed] (NET-628) NET-628 Prepared an abstract class for subnet functions

2017-03-24 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-628?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi closed NET-628.

Resolution: Done

> NET-628 Prepared an abstract class for subnet functions
> ---
>
> Key: NET-628
> URL: https://issues.apache.org/jira/browse/NET-628
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> This class is in the SubnetInfo subclass in SubnetUtils.
> This class will be used as an interface for IPv4 and IPv6 subnet objects.
> Every methods from the existing SubnetUtils.SubnetInfo.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-628) NET-628 Prepared an abstract class for subnet functions

2017-03-24 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-628?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-628:
-
Description: 
This class is in the SubnetInfo subclass in SubnetUtils.

This class will be used as an interface for IPv4 and IPv6 subnet objects.
Every methods from the existing SubnetUtils.SubnetInfo.

  was:
This class will be used as an interface for IPv4 and IPv6 subnet objects.
Every methods from the existing SubnetUtils.SubnetInfo.


> NET-628 Prepared an abstract class for subnet functions
> ---
>
> Key: NET-628
> URL: https://issues.apache.org/jira/browse/NET-628
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> This class is in the SubnetInfo subclass in SubnetUtils.
> This class will be used as an interface for IPv4 and IPv6 subnet objects.
> Every methods from the existing SubnetUtils.SubnetInfo.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-628) NET-628 Prepared an abstract class for subnet functions

2017-03-24 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-628?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-628:
-
Description: 
This class will be used as an interface for IPv4 and IPv6 subnet objects.
Every methods from the existing SubnetUtils.SubnetInfo.

  was:
This class will be used as an interface for IPv4 and IPv6 subnet objects.
Every methods from the existing SubnetUtils.SubnetInfo. 

https://github.com/apache/commons-net/pull/20


> NET-628 Prepared an abstract class for subnet functions
> ---
>
> Key: NET-628
> URL: https://issues.apache.org/jira/browse/NET-628
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> This class will be used as an interface for IPv4 and IPv6 subnet objects.
> Every methods from the existing SubnetUtils.SubnetInfo.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Closed] (NET-627) NET-627 Created a new package in the "util"

2017-03-24 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-627?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi closed NET-627.

Resolution: Done

> NET-627 Created a new package in the "util"
> ---
>
> Key: NET-627
> URL: https://issues.apache.org/jira/browse/NET-627
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> I suppose to need three new classes for supporting IPv6.
> These are two classes with IPv4 and IPv6 subnet functions and an abstract 
> class of the functions.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-627) NET-627 Created a new package in the "util"

2017-03-24 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-627?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-627:
-
Description: 
I suppose to need three new classes for supporting IPv6.
These are two classes with IPv4 and IPv6 subnet functions and an abstract class 
of the functions.

  was:
I suppose to need three new classes for supporting IPv6.
These are two classes with IPv4 and IPv6 subnet functions and an abstract class 
of the functions.

https://github.com/apache/commons-net/pull/19


> NET-627 Created a new package in the "util"
> ---
>
> Key: NET-627
> URL: https://issues.apache.org/jira/browse/NET-627
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> I suppose to need three new classes for supporting IPv6.
> These are two classes with IPv4 and IPv6 subnet functions and an abstract 
> class of the functions.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo subclass

2017-03-24 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

h2. Change log
h3. 3/24/17
* *SubnetInfo class into a subclass of SubnetUtil*
* The getAddressCount and getAllAddresses methods were reimplemented 
** For compatibility
* Moved IP4Subnet and IP6Subnet classes into the until package

h3. 3/23/17
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others
* Removed the insignificant value representation, which are no reasons to be 
defined in this class
* -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)-
* -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
* Improved comments

https://github.com/apache/commons-net/pull/25

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* *SubnetInfo class into a subclass of SubnetUtil*
* The getAddressCount and getAllAddresses methods were reimplemented 
** For compatibility
* Moved IP4Subnet and IP6Subnet classes into the until package

* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others
* Removed the insignificant value representation, which are no reasons to be 
defined in this class
* Improved comments

https://github.com/apache/commons-net/pull/25


> NET-630 Changed SubnetUtils for NEW SubnetInfo subclass
> ---
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> h2. Change log
> h3. 3/24/17
> * *SubnetInfo class into a subclass of SubnetUtil*
> * The getAddressCount and getAllAddresses methods were reimplemented 
> ** For compatibility
> * Moved IP4Subnet and IP6Subnet classes into the until package
> h3. 3/23/17
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused others
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class
> * -Changes the path to SubnetInfo (SubnetUtilsExample.java and 
> SubnetUtilsTest.java)-
> * -Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class-
> * Improved comments
> https://github.com/apache/commons-net/pull/25



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo subclass

2017-03-24 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* *SubnetInfo class into a subclass of SubnetUtil*
* The getAddressCount and getAllAddresses methods were reimplemented 
** For compatibility
* Moved IP4Subnet and IP6Subnet classes into the until package

* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others
* Removed the insignificant value representation, which are no reasons to be 
defined in this class
* Improved comments

https://github.com/apache/commons-net/pull/25

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* *SubnetInfo class into a subclass of SubnetUtils*
** For compatibility
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others
* Moved IP4Subnet and IP6Subnet classes into the until package
* Removed the insignificant value representation, which are no reasons to be 
defined in this class
* Improved comments

https://github.com/apache/commons-net/pull/25


> NET-630 Changed SubnetUtils for NEW SubnetInfo subclass
> ---
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> Change log
> * *SubnetInfo class into a subclass of SubnetUtil*
> * The getAddressCount and getAllAddresses methods were reimplemented 
> ** For compatibility
> * Moved IP4Subnet and IP6Subnet classes into the until package
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused others
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class
> * Improved comments
> https://github.com/apache/commons-net/pull/25



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo subclass

2017-03-24 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* *SubnetInfo class into a subclass of SubnetUtils*
** For compatibility
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others
* Moved IP4Subnet and IP6Subnet classes into the until package
* Removed the insignificant value representation, which are no reasons to be 
defined in this class
* Improved comments

https://github.com/apache/commons-net/pull/25

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others.
* Moved IP4Subnet and IP6Subnet classes into the until package.
* Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* Improved comments

https://github.com/apache/commons-net/pull/25


> NET-630 Changed SubnetUtils for NEW SubnetInfo subclass
> ---
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> Change log
> * *SubnetInfo class into a subclass of SubnetUtils*
> ** For compatibility
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused others
> * Moved IP4Subnet and IP6Subnet classes into the until package
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class
> * Improved comments
> https://github.com/apache/commons-net/pull/25



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Comment Edited] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo subclass

2017-03-24 Thread Makoto Sakaguchi (JIRA)

[ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15939789#comment-15939789
 ] 

Makoto Sakaguchi edited comment on NET-630 at 3/24/17 8:27 PM:
---

I suppose to need three new classes for supporting IPv6, which is two classes 
with IPv4 and IPv6 subnet functions and an abstract class of the functions.
So, I created a new package, which is subnet in the util package, and placed 
them there; the package was removed.

At least, the subclass in SubnetUtils, SubnetInfo, had better to be a separate 
class for future maintenance.


was (Author: umoxfo):
I suppose to need three new classes for supporting IPv6, which is two classes 
with IPv4 and IPv6 subnet functions and an abstract class of the functions.
So, I created a new package, which is subnet in the util package, and placed 
them there.
At least, the subclass in SubnetUtils, SubnetInfo, must be a separate class for 
future maintenance.

> NET-630 Changed SubnetUtils for NEW SubnetInfo subclass
> ---
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> Change log
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused 
> others.
> * Moved IP4Subnet and IP6Subnet classes into the until package.
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class.
> * Improved comments
> https://github.com/apache/commons-net/pull/25



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo subclass

2017-03-24 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others.
* Moved IP4Subnet and IP6Subnet classes into the until package.
* Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* Improved comments

https://github.com/apache/commons-net/pull/25

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others.
* Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* Improved comments

https://github.com/apache/commons-net/pull/25


> NET-630 Changed SubnetUtils for NEW SubnetInfo subclass
> ---
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> Change log
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused 
> others.
> * Moved IP4Subnet and IP6Subnet classes into the until package.
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class.
> * Improved comments
> https://github.com/apache/commons-net/pull/25



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo subclass

2017-03-24 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others.
* Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* Improved comments

https://github.com/apache/commons-net/pull/25

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others.
* Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)
* Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class.
* Improved comments

https://github.com/apache/commons-net/pull/25


> NET-630 Changed SubnetUtils for NEW SubnetInfo subclass
> ---
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> Change log
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused 
> others.
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class.
> * Improved comments
> https://github.com/apache/commons-net/pull/25



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo subclass

2017-03-24 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others.
* Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)
* Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class.
* Improved comments

https://github.com/apache/commons-net/pull/25

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others.
* Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)
* Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class.
* Improved comments

https://github.com/apache/commons-net/pull/24


> NET-630 Changed SubnetUtils for NEW SubnetInfo subclass
> ---
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> Change log
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class.
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused 
> others.
> * Changes the path to SubnetInfo (SubnetUtilsExample.java and 
> SubnetUtilsTest.java)
> * Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class.
> * Improved comments
> https://github.com/apache/commons-net/pull/25



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo subclass

2017-03-24 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Summary: NET-630 Changed SubnetUtils for NEW SubnetInfo subclass  (was: 
NET-630 Changed SubnetUtils for NEW SubnetInfo)

> NET-630 Changed SubnetUtils for NEW SubnetInfo subclass
> ---
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> Change log
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class.
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused 
> others.
> * Changes the path to SubnetInfo (SubnetUtilsExample.java and 
> SubnetUtilsTest.java)
> * Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class.
> * Improved comments
> https://github.com/apache/commons-net/pull/24



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo

2017-03-24 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* _Renamed getAddressCount() to getAddressCountString()_
** The old name, getAddressCount(), was the obsoleted name and confused others.

* Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)
* Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class.
* Improved comments

https://github.com/apache/commons-net/pull/24

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others.
* Improved comments
* Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)
* Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class.

https://github.com/apache/commons-net/pull/24


> NET-630 Changed SubnetUtils for NEW SubnetInfo
> --
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> Change log
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class.
> * _Renamed getAddressCount() to getAddressCountString()_
> ** The old name, getAddressCount(), was the obsoleted name and confused 
> others.
> * Changes the path to SubnetInfo (SubnetUtilsExample.java and 
> SubnetUtilsTest.java)
> * Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class.
> * Improved comments
> https://github.com/apache/commons-net/pull/24



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo

2017-03-24 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others.
* Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)
* Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class.
* Improved comments

https://github.com/apache/commons-net/pull/24

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* _Renamed getAddressCount() to getAddressCountString()_
** The old name, getAddressCount(), was the obsoleted name and confused others.

* Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)
* Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class.
* Improved comments

https://github.com/apache/commons-net/pull/24


> NET-630 Changed SubnetUtils for NEW SubnetInfo
> --
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> Change log
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class.
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused 
> others.
> * Changes the path to SubnetInfo (SubnetUtilsExample.java and 
> SubnetUtilsTest.java)
> * Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class.
> * Improved comments
> https://github.com/apache/commons-net/pull/24



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo

2017-03-23 Thread Makoto Sakaguchi (JIRA)

[ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15939789#comment-15939789
 ] 

Makoto Sakaguchi commented on NET-630:
--

I suppose to need three new classes for supporting IPv6, which is two classes 
with IPv4 and IPv6 subnet functions and an abstract class of the functions.
So, I created a new package, which is subnet in the util package, and placed 
them there.
At least, the subclass in SubnetUtils, SubnetInfo, must be a separate class for 
future maintenance.

> NET-630 Changed SubnetUtils for NEW SubnetInfo
> --
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> Change log
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class.
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused 
> others.
> * Improved comments
> * Changes the path to SubnetInfo (SubnetUtilsExample.java and 
> SubnetUtilsTest.java)
> * Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class.
> https://github.com/apache/commons-net/pull/24



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo

2017-03-23 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others.
* Improved comments
* Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)
* Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class.

https://github.com/apache/commons-net/pull/23

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others.
* Improved comments
* Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)

https://github.com/apache/commons-net/pull/23


> NET-630 Changed SubnetUtils for NEW SubnetInfo
> --
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> Change log
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class.
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused 
> others.
> * Improved comments
> * Changes the path to SubnetInfo (SubnetUtilsExample.java and 
> SubnetUtilsTest.java)
> * Replaced getAddressCount to getAddressLong in the SubnetUtilsTest class.
> https://github.com/apache/commons-net/pull/23



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo

2017-03-23 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others.
* Improved comments
* Changes the path to SubnetInfo (SubnetUtilsExample.java and 
SubnetUtilsTest.java)

https://github.com/apache/commons-net/pull/23

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* The method rangeCheck, pop, and format of SubnetUtils was moved to the NEW 
SubnetInfo class.
* Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others.
* Improved comments

https://github.com/apache/commons-net/pull/23


> NET-630 Changed SubnetUtils for NEW SubnetInfo
> --
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> Change log
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class.
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused 
> others.
> * Improved comments
> * Changes the path to SubnetInfo (SubnetUtilsExample.java and 
> SubnetUtilsTest.java)
> https://github.com/apache/commons-net/pull/23



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-629) NET-629 Added IP4Subnet and IP6Subnet classes

2017-03-23 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-629?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-629:
-
Description: 
IP4Subnet and IP6Subnet classes which provide subnet summary information for 
each IP address version.

Change log
* The method rangeCheck, pop, and format of SubnetUtils was moved to SubnetInfo 
in the subnet package.
* Added asInteger, getCidrSignature, and getAllAddresses methods of 
SubnetUtils.SubnetInfo to SubnetInfo in the subnet package.
* Changed the parameter type of isInRange from short array to integer array.
* Renamed getAddressCount() to getAddressCountString()
** The old name, getAddressCount(), was the obsoleted name and confused others.
* Improved comments

https://github.com/apache/commons-net/pull/22

  was:
IP4Subnet and IP6Subnet classes which provide subnet summary information for 
each IP address version.

Change log
* The method rangeCheck, pop, and format of SubnetUtils was moved to SubnetInfo 
in the subnet package.
* Added asInteger, getCidrSignature, and getAllAddresses methods of 
SubnetUtils.SubnetInfo to SubnetInfo in the subnet package.
* Changed the parameter type of isInRange from short array to integer array.
* Improved comments

https://github.com/apache/commons-net/pull/22


> NET-629 Added IP4Subnet and IP6Subnet classes
> -
>
> Key: NET-629
> URL: https://issues.apache.org/jira/browse/NET-629
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> IP4Subnet and IP6Subnet classes which provide subnet summary information for 
> each IP address version.
> Change log
> * The method rangeCheck, pop, and format of SubnetUtils was moved to 
> SubnetInfo in the subnet package.
> * Added asInteger, getCidrSignature, and getAllAddresses methods of 
> SubnetUtils.SubnetInfo to SubnetInfo in the subnet package.
> * Changed the parameter type of isInRange from short array to integer array.
> * Renamed getAddressCount() to getAddressCountString()
> ** The old name, getAddressCount(), was the obsoleted name and confused 
> others.
> * Improved comments
> https://github.com/apache/commons-net/pull/22



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo

2017-03-23 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* The method rangeCheck, pop, and format of SubnetUtils was moved to the NEW 
SubnetInfo class.
* Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others.
* Improved comments

https://github.com/apache/commons-net/pull/23

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* The method rangeCheck, pop, and format of SubnetUtils was moved to the NEW 
SubnetInfo class.
* Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others.
* Removed the NEW SubnetUtils class
* Improved comments

https://github.com/apache/commons-net/pull/23


> NET-630 Changed SubnetUtils for NEW SubnetInfo
> --
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> Change log
> * The method rangeCheck, pop, and format of SubnetUtils was moved to the NEW 
> SubnetInfo class.
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class.
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused 
> others.
> * Improved comments
> https://github.com/apache/commons-net/pull/23



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo

2017-03-23 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* The method rangeCheck, pop, and format of SubnetUtils was moved to the NEW 
SubnetInfo class.
* Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others.
* Removed the NEW SubnetUtils class
* Improved comments

https://github.com/apache/commons-net/pull/23

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* The method rangeCheck, pop, and format of SubnetUtils was moved to the NEW 
SubnetInfo class.
Improved comments
* Improved comments
* Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others.
* Removed the NEW SubnetUtils class

https://github.com/apache/commons-net/pull/23


> NET-630 Changed SubnetUtils for NEW SubnetInfo
> --
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> Change log
> * The method rangeCheck, pop, and format of SubnetUtils was moved to the NEW 
> SubnetInfo class.
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class.
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused 
> others.
> * Removed the NEW SubnetUtils class
> * Improved comments
> https://github.com/apache/commons-net/pull/23



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-629) NET-629 Added IP4Subnet and IP6Subnet classes

2017-03-23 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-629?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-629:
-
Description: 
IP4Subnet and IP6Subnet classes which provide subnet summary information for 
each IP address version.

Change log
* The method rangeCheck, pop, and format of SubnetUtils was moved to SubnetInfo 
in the subnet package.
* Added asInteger, getCidrSignature, and getAllAddresses methods of 
SubnetUtils.SubnetInfo to SubnetInfo in the subnet package.
* Changed the parameter type of isInRange from short array to integer array.
* Improved comments

https://github.com/apache/commons-net/pull/22

  was:
IP4Subnet and IP6Subnet classes which provide subnet summary information for 
each IP address version.

Change log
The method rangeCheck, pop, and format of SubnetUtils was moved to SubnetInfo 
in the subnet package.
Added asInteger, getCidrSignature, and getAllAddresses methods of 
SubnetUtils.SubnetInfo to SubnetInfo in the subnet package.
Changed the parameter type of isInRange from short array to integer array.
Improved comments

https://github.com/apache/commons-net/pull/22


> NET-629 Added IP4Subnet and IP6Subnet classes
> -
>
> Key: NET-629
> URL: https://issues.apache.org/jira/browse/NET-629
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> IP4Subnet and IP6Subnet classes which provide subnet summary information for 
> each IP address version.
> Change log
> * The method rangeCheck, pop, and format of SubnetUtils was moved to 
> SubnetInfo in the subnet package.
> * Added asInteger, getCidrSignature, and getAllAddresses methods of 
> SubnetUtils.SubnetInfo to SubnetInfo in the subnet package.
> * Changed the parameter type of isInRange from short array to integer array.
> * Improved comments
> https://github.com/apache/commons-net/pull/22



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-629) NET-629 Added IP4Subnet and IP6Subnet classes

2017-03-23 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-629?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-629:
-
Summary: NET-629 Added IP4Subnet and IP6Subnet classes  (was: NET-629 
Created NEW SubnetUtils and organize)

> NET-629 Added IP4Subnet and IP6Subnet classes
> -
>
> Key: NET-629
> URL: https://issues.apache.org/jira/browse/NET-629
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> IP4Subnet and IP6Subnet classes which provide subnet summary information for 
> each IP address version.
> Change log
> The method rangeCheck, pop, and format of SubnetUtils was moved to SubnetInfo 
> in the subnet package.
> Added asInteger, getCidrSignature, and getAllAddresses methods of 
> SubnetUtils.SubnetInfo to SubnetInfo in the subnet package.
> Changed the parameter type of isInRange from short array to integer array.
> Improved comments
> https://github.com/apache/commons-net/pull/22



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-629) NET-629 Created NEW SubnetUtils and organize

2017-03-23 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-629?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-629:
-
Description: 
IP4Subnet and IP6Subnet classes which provide subnet summary information for 
each IP address version.

Change log
The method rangeCheck, pop, and format of SubnetUtils was moved to SubnetInfo 
in the subnet package.
Added asInteger, getCidrSignature, and getAllAddresses methods of 
SubnetUtils.SubnetInfo to SubnetInfo in the subnet package.
Changed the parameter type of isInRange from short array to integer array.
Improved comments

https://github.com/apache/commons-net/pull/22

  was:
This class has a few common methods, which are rangeCheck, pop, and format, and 
two ways to generate subnet summary information from the existing SubnetUtils 
class constructors.
Also, added IP4Subnet and IP6Subnet classes which provide subnet summary 
information for each IP address version.

Change log
Added IP4Subnet and IP6Subnet classes
The method rangeCheck, pop, and format of SubnetUtils was moved to SubnetInfo.
Improved comments
Changed the parameter type of isInRange from short array to integer array.
Improved checking for the network fields.
Removed the insignificant value representation and the class declaration.

https://github.com/apache/commons-net/pull/22


> NET-629 Created NEW SubnetUtils and organize
> 
>
> Key: NET-629
> URL: https://issues.apache.org/jira/browse/NET-629
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> IP4Subnet and IP6Subnet classes which provide subnet summary information for 
> each IP address version.
> Change log
> The method rangeCheck, pop, and format of SubnetUtils was moved to SubnetInfo 
> in the subnet package.
> Added asInteger, getCidrSignature, and getAllAddresses methods of 
> SubnetUtils.SubnetInfo to SubnetInfo in the subnet package.
> Changed the parameter type of isInRange from short array to integer array.
> Improved comments
> https://github.com/apache/commons-net/pull/22



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo

2017-03-23 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* The method rangeCheck, pop, and format of SubnetUtils was moved to the NEW 
SubnetInfo class.
Improved comments
* Improved comments
* Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others.
* Removed the NEW SubnetUtils class

https://github.com/apache/commons-net/pull/23

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* Improved comments
* Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others.
* Removed the NEW SubnetUtils class

https://github.com/apache/commons-net/pull/23


> NET-630 Changed SubnetUtils for NEW SubnetInfo
> --
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> Change log
> * The method rangeCheck, pop, and format of SubnetUtils was moved to the NEW 
> SubnetInfo class.
> Improved comments
> * Improved comments
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class.
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused 
> others.
> * Removed the NEW SubnetUtils class
> https://github.com/apache/commons-net/pull/23



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo

2017-03-23 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* Improved comments
* Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others.
* Removed the NEW SubnetUtils class

https://github.com/apache/commons-net/pull/23

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* Improved comments
* Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others.

https://github.com/apache/commons-net/pull/23


> NET-630 Changed SubnetUtils for NEW SubnetInfo
> --
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> Change log
> * Improved comments
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class.
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused 
> others.
> * Removed the NEW SubnetUtils class
> https://github.com/apache/commons-net/pull/23



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo

2017-03-23 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* Improved comments
* Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others.

https://github.com/apache/commons-net/pull/23

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* The method rangeCheck, pop, and format of SubnetUtils was moved to the NEW 
SubnetInfo class.
* Improved comments
* Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others.

https://github.com/apache/commons-net/pull/23


> NET-630 Changed SubnetUtils for NEW SubnetInfo
> --
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> Change log
> * Improved comments
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class.
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused 
> others.
> https://github.com/apache/commons-net/pull/23



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo

2017-03-23 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
* The method rangeCheck, pop, and format of SubnetUtils was moved to the NEW 
SubnetInfo class.
* Improved comments
* Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* *Renamed getAddressCount() to getAddressCountString()*
** The old name, getAddressCount(), was the obsoleted name and confused others.

https://github.com/apache/commons-net/pull/23

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
*The method rangeCheck, pop, and format of SubnetUtils was moved to the NEW 
SubnetInfo class.
*Improved comments
*Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* *Renamed getAddressCount() to getAddressCountString()*
**The old name, getAddressCount(), was the obsoleted name and confused others.

https://github.com/apache/commons-net/pull/23


> NET-630 Changed SubnetUtils for NEW SubnetInfo
> --
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> Change log
> * The method rangeCheck, pop, and format of SubnetUtils was moved to the NEW 
> SubnetInfo class.
> * Improved comments
> * Removed the insignificant value representation, which are no reasons to be 
> defined in this class.
> * *Renamed getAddressCount() to getAddressCountString()*
> ** The old name, getAddressCount(), was the obsoleted name and confused 
> others.
> https://github.com/apache/commons-net/pull/23



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo

2017-03-23 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
*The method rangeCheck, pop, and format of SubnetUtils was moved to the NEW 
SubnetInfo class.
*Improved comments
*Removed the insignificant value representation, which are no reasons to be 
defined in this class.
* *Renamed getAddressCount() to getAddressCountString()*
**The old name, getAddressCount(), was the obsoleted name and confused others.

https://github.com/apache/commons-net/pull/23

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
The method rangeCheck, pop, and format of SubnetUtils was moved to the NEW 
SubnetInfo class.
Improved comments
Removed the insignificant value representation, which are no reasons to be 
defined in this class.
*Renamed getAddressCount() to getAddressCountString()*
  The old name, getAddressCount(), was the obsoleted name and confused others.

https://github.com/apache/commons-net/pull/23


> NET-630 Changed SubnetUtils for NEW SubnetInfo
> --
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> Change log
> *The method rangeCheck, pop, and format of SubnetUtils was moved to the NEW 
> SubnetInfo class.
> *Improved comments
> *Removed the insignificant value representation, which are no reasons to be 
> defined in this class.
> * *Renamed getAddressCount() to getAddressCountString()*
> **The old name, getAddressCount(), was the obsoleted name and confused others.
> https://github.com/apache/commons-net/pull/23



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo

2017-03-23 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
The method rangeCheck, pop, and format of SubnetUtils was moved to the NEW 
SubnetInfo class.
Improved comments
Removed the insignificant value representation, which are no reasons to be 
defined in this class.
*Renamed getAddressCount() to getAddressCountString()*
  The old name, getAddressCount(), was the obsoleted name and confused others.

https://github.com/apache/commons-net/pull/23

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
The method rangeCheck, pop, and format of SubnetUtils was moved to the NEW 
SubnetInfo class.
Improved comments
Removed the insignificant value representation, which are no reasons to be 
defined in this class.
*Renamed getAddressCount() to getAddressCountString()*
 The old name, getAddressCount(), was the obsoleted name and confused others.

https://github.com/apache/commons-net/pull/23


> NET-630 Changed SubnetUtils for NEW SubnetInfo
> --
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> Change log
> The method rangeCheck, pop, and format of SubnetUtils was moved to the NEW 
> SubnetInfo class.
> Improved comments
> Removed the insignificant value representation, which are no reasons to be 
> defined in this class.
> *Renamed getAddressCount() to getAddressCountString()*
>   The old name, getAddressCount(), was the obsoleted name and confused others.
> https://github.com/apache/commons-net/pull/23



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo

2017-03-23 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
The method rangeCheck, pop, and format of SubnetUtils was moved to the NEW 
SubnetInfo class.
Improved comments
Removed the insignificant value representation, which are no reasons to be 
defined in this class.
*Renamed getAddressCount() to getAddressCountString()*
 The old name, getAddressCount(), was the obsoleted name and confused others.

https://github.com/apache/commons-net/pull/23

  was:
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
The method rangeCheck, pop, and format of SubnetUtils was moved to the NEW 
SubnetInfo class.
Improved comments
Removed the insignificant value representation, which are no reasons to be 
defined in this class.

https://github.com/apache/commons-net/pull/23


> NET-630 Changed SubnetUtils for NEW SubnetInfo
> --
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> Change log
> The method rangeCheck, pop, and format of SubnetUtils was moved to the NEW 
> SubnetInfo class.
> Improved comments
> Removed the insignificant value representation, which are no reasons to be 
> defined in this class.
> *Renamed getAddressCount() to getAddressCountString()*
>  The old name, getAddressCount(), was the obsoleted name and confused others.
> https://github.com/apache/commons-net/pull/23



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo

2017-03-23 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
The constructors of this class has been modified to create a object of subnet 
summary information.
Also, added two new static methods to create the object.

Change log
The method rangeCheck, pop, and format of SubnetUtils was moved to the NEW 
SubnetInfo class.
Improved comments
Removed the insignificant value representation, which are no reasons to be 
defined in this class.

https://github.com/apache/commons-net/pull/23

  was:
It can also be replaced with new SubnetUtils class in the subnet package.

https://github.com/apache/commons-net/pull/23


> NET-630 Changed SubnetUtils for NEW SubnetInfo
> --
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> The constructors of this class has been modified to create a object of subnet 
> summary information.
> Also, added two new static methods to create the object.
> Change log
> The method rangeCheck, pop, and format of SubnetUtils was moved to the NEW 
> SubnetInfo class.
> Improved comments
> Removed the insignificant value representation, which are no reasons to be 
> defined in this class.
> https://github.com/apache/commons-net/pull/23



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Changed SubnetUtils for NEW SubnetInfo

2017-03-23 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Summary: NET-630 Changed SubnetUtils for NEW SubnetInfo  (was: NET-630 Add 
deprecated annotations to the original SubnetUtils )

> NET-630 Changed SubnetUtils for NEW SubnetInfo
> --
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> It can also be replaced with new SubnetUtils class in the subnet package.
> https://github.com/apache/commons-net/pull/23



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (NET-630) NET-630 Add deprecated annotations to the original SubnetUtils

2017-03-22 Thread Makoto Sakaguchi (JIRA)

[ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15937563#comment-15937563
 ] 

Makoto Sakaguchi commented on NET-630:
--

I will try to deal with IPv6 based on the existing SubnetUtils.

I made the getAddressCount method to return a string of the number of available 
IP addresses because IPv6 uses a 128-bit address.
But it confused others, so I will change the method name to 
getAddressCountString().

> NET-630 Add deprecated annotations to the original SubnetUtils 
> ---
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> It can also be replaced with new SubnetUtils class in the subnet package.
> https://github.com/apache/commons-net/pull/23



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) NET-630 Add deprecated annotations to the original SubnetUtils

2017-03-22 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Summary: NET-630 Add deprecated annotations to the original SubnetUtils   
(was: Add deprecated annotations to the original SubnetUtils )

> NET-630 Add deprecated annotations to the original SubnetUtils 
> ---
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> It can also be replaced with new SubnetUtils class in the subnet package.
> https://github.com/apache/commons-net/pull/23



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-629) NET-629 Created NEW SubnetUtils and organize

2017-03-22 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-629?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-629:
-
Summary: NET-629 Created NEW SubnetUtils and organize  (was: Created NEW 
SubnetUtils and organize)

> NET-629 Created NEW SubnetUtils and organize
> 
>
> Key: NET-629
> URL: https://issues.apache.org/jira/browse/NET-629
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> This class has a few common methods, which are rangeCheck, pop, and format, 
> and two ways to generate subnet summary information from the existing 
> SubnetUtils class constructors.
> Also, added IP4Subnet and IP6Subnet classes which provide subnet summary 
> information for each IP address version.
> Change log
> Added IP4Subnet and IP6Subnet classes
> The method rangeCheck, pop, and format of SubnetUtils was moved to SubnetInfo.
> Improved comments
> Changed the parameter type of isInRange from short array to integer array.
> Improved checking for the network fields.
> Removed the insignificant value representation and the class declaration.
> https://github.com/apache/commons-net/pull/22



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-628) NET-628 Prepared an abstract class for subnet functions

2017-03-22 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-628?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-628:
-
Summary: NET-628 Prepared an abstract class for subnet functions  (was: 
Prepared an abstract class for subnet functions)

> NET-628 Prepared an abstract class for subnet functions
> ---
>
> Key: NET-628
> URL: https://issues.apache.org/jira/browse/NET-628
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> This class will be used as an interface for IPv4 and IPv6 subnet objects.
> Every methods from the existing SubnetUtils.SubnetInfo. 
> https://github.com/apache/commons-net/pull/20



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-627) NET-627 Created a new package in the "util"

2017-03-22 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-627?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-627:
-
Summary: NET-627 Created a new package in the "util"  (was: Created a new 
package in the "util")

> NET-627 Created a new package in the "util"
> ---
>
> Key: NET-627
> URL: https://issues.apache.org/jira/browse/NET-627
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> I suppose to need three new classes for supporting IPv6.
> These are two classes with IPv4 and IPv6 subnet functions and an abstract 
> class of the functions.
> https://github.com/apache/commons-net/pull/19



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) Add deprecated annotations to the original SubnetUtils

2017-03-22 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Description: 
It can also be replaced with new SubnetUtils class in the subnet package.

https://github.com/apache/commons-net/pull/23

  was:It can also be replaced with new SubnetUtils class in the subnet package.


> Add deprecated annotations to the original SubnetUtils 
> ---
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> It can also be replaced with new SubnetUtils class in the subnet package.
> https://github.com/apache/commons-net/pull/23



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-630) Add deprecated annotations to the original SubnetUtils

2017-03-22 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-630:
-
Summary: Add deprecated annotations to the original SubnetUtils   (was: Add 
deprecated comments to the original SubnetUtils )

> Add deprecated annotations to the original SubnetUtils 
> ---
>
> Key: NET-630
> URL: https://issues.apache.org/jira/browse/NET-630
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> It can also be replaced with new SubnetUtils class in the subnet package.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Created] (NET-630) Add deprecated comments to the original SubnetUtils

2017-03-22 Thread Makoto Sakaguchi (JIRA)
Makoto Sakaguchi created NET-630:


 Summary: Add deprecated comments to the original SubnetUtils 
 Key: NET-630
 URL: https://issues.apache.org/jira/browse/NET-630
 Project: Commons Net
  Issue Type: Sub-task
Reporter: Makoto Sakaguchi


It can also be replaced with new SubnetUtils class in the subnet package.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-629) Created NEW SubnetUtils and organize

2017-03-22 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-629?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-629:
-
Description: 
This class has a few common methods, which are rangeCheck, pop, and format, and 
two ways to generate subnet summary information from the existing SubnetUtils 
class constructors.
Also, added IP4Subnet and IP6Subnet classes which provide subnet summary 
information for each IP address version.

Change log
Added IP4Subnet and IP6Subnet classes
The method rangeCheck, pop, and format of SubnetUtils was moved to SubnetInfo.
Improved comments
Changed the parameter type of isInRange from short array to integer array.
Improved checking for the network fields.
Removed the insignificant value representation and the class declaration.

https://github.com/apache/commons-net/pull/22

  was:
This class has a few common methods, which are rangeCheck, pop, and format, and 
two ways to generate subnet summary information from the existing SubnetUtils 
class constructors.

Also, added IP4Subnet and IP6Subnet classes which provide subnet summary 
information for each IP address version.

https://github.com/apache/commons-net/pull/22


> Created NEW SubnetUtils and organize
> 
>
> Key: NET-629
> URL: https://issues.apache.org/jira/browse/NET-629
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> This class has a few common methods, which are rangeCheck, pop, and format, 
> and two ways to generate subnet summary information from the existing 
> SubnetUtils class constructors.
> Also, added IP4Subnet and IP6Subnet classes which provide subnet summary 
> information for each IP address version.
> Change log
> Added IP4Subnet and IP6Subnet classes
> The method rangeCheck, pop, and format of SubnetUtils was moved to SubnetInfo.
> Improved comments
> Changed the parameter type of isInRange from short array to integer array.
> Improved checking for the network fields.
> Removed the insignificant value representation and the class declaration.
> https://github.com/apache/commons-net/pull/22



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-629) Created NEW SubnetUtils and organize

2017-03-22 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-629?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-629:
-
Summary: Created NEW SubnetUtils and organize  (was: Created NEW 
SubnetUtils)

> Created NEW SubnetUtils and organize
> 
>
> Key: NET-629
> URL: https://issues.apache.org/jira/browse/NET-629
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> This class has a few common methods, which are rangeCheck, pop, and format, 
> and two ways to generate subnet summary information from the existing 
> SubnetUtils class constructors.
> Also, added IP4Subnet and IP6Subnet classes which provide subnet summary 
> information for each IP address version.
> https://github.com/apache/commons-net/pull/22



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-629) Created NEW SubnetUtils

2017-03-22 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-629?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-629:
-
Description: This class has a few common methods, which are rangeCheck, 
pop, and format, and two ways to generate subnet summary information from the 
existing SubnetUtils class constructors.

> Created NEW SubnetUtils
> ---
>
> Key: NET-629
> URL: https://issues.apache.org/jira/browse/NET-629
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> This class has a few common methods, which are rangeCheck, pop, and format, 
> and two ways to generate subnet summary information from the existing 
> SubnetUtils class constructors.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-629) Created NEW SubnetUtils

2017-03-22 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-629?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-629:
-
Summary: Created NEW SubnetUtils  (was: Reorganized SubnetUtils)

> Created NEW SubnetUtils
> ---
>
> Key: NET-629
> URL: https://issues.apache.org/jira/browse/NET-629
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Created] (NET-629) Reorganized SubnetUtils

2017-03-22 Thread Makoto Sakaguchi (JIRA)
Makoto Sakaguchi created NET-629:


 Summary: Reorganized SubnetUtils
 Key: NET-629
 URL: https://issues.apache.org/jira/browse/NET-629
 Project: Commons Net
  Issue Type: Sub-task
Reporter: Makoto Sakaguchi






--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Created] (NET-628) Prepared an abstract class for subnet functions

2017-03-21 Thread Makoto Sakaguchi (JIRA)
Makoto Sakaguchi created NET-628:


 Summary: Prepared an abstract class for subnet functions
 Key: NET-628
 URL: https://issues.apache.org/jira/browse/NET-628
 Project: Commons Net
  Issue Type: Sub-task
Reporter: Makoto Sakaguchi






--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Created] (NET-627) Created a new package in the "util".

2017-03-21 Thread Makoto Sakaguchi (JIRA)
Makoto Sakaguchi created NET-627:


 Summary: Created a new package in the "util".
 Key: NET-627
 URL: https://issues.apache.org/jira/browse/NET-627
 Project: Commons Net
  Issue Type: Sub-task
Reporter: Makoto Sakaguchi


I suppose to need three new classes for supporting IPv6.
These are two classes with IPv4 and IPv6 subnet functions and an abstract class 
of the functions.





--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-627) Created a new package in the "util"

2017-03-21 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-627?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-627:
-
Summary: Created a new package in the "util"  (was: Created a new package 
in the "util".)

> Created a new package in the "util"
> ---
>
> Key: NET-627
> URL: https://issues.apache.org/jira/browse/NET-627
> Project: Commons Net
>  Issue Type: Sub-task
>Reporter: Makoto Sakaguchi
>
> I suppose to need three new classes for supporting IPv6.
> These are two classes with IPv4 and IPv6 subnet functions and an abstract 
> class of the functions.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Issue Comment Deleted] (NET-405) Support for IPv6 in SubnetUtils

2017-03-21 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-405?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-405:
-
Comment: was deleted

(was: It was ready for supporting IPv6.
https://github.com/apache/commons-net/pull/18)

> Support for IPv6 in SubnetUtils
> ---
>
> Key: NET-405
> URL: https://issues.apache.org/jira/browse/NET-405
> Project: Commons Net
>  Issue Type: Improvement
>Reporter: Marc Lefrancois
>
> Currently, we cannot use org.apache.commons.net.util.SubnetUtils with IPv6 
> addresses. This class will become less and less useful as more internet 
> device are only assigned IPv6 addresses since all available IPv4 address 
> blocks have now been attributed. 
> http://en.wikipedia.org/wiki/IPv4_address_exhaustion



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Comment Edited] (NET-405) Support for IPv6 in SubnetUtils

2017-03-19 Thread Makoto Sakaguchi (JIRA)

[ 
https://issues.apache.org/jira/browse/NET-405?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15906982#comment-15906982
 ] 

Makoto Sakaguchi edited comment on NET-405 at 3/20/17 5:11 AM:
---

It was ready for supporting IPv6.
https://github.com/apache/commons-net/pull/18


was (Author: umoxfo):
It was ready for supporting IPv6.
https://github.com/apache/commons-net/pull/18

But, it does not work the existing test cases.

> Support for IPv6 in SubnetUtils
> ---
>
> Key: NET-405
> URL: https://issues.apache.org/jira/browse/NET-405
> Project: Commons Net
>  Issue Type: Improvement
>Reporter: Marc Lefrancois
>
> Currently, we cannot use org.apache.commons.net.util.SubnetUtils with IPv6 
> addresses. This class will become less and less useful as more internet 
> device are only assigned IPv6 addresses since all available IPv4 address 
> blocks have now been attributed. 
> http://en.wikipedia.org/wiki/IPv4_address_exhaustion



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Comment Edited] (NET-405) Support for IPv6 in SubnetUtils

2017-03-17 Thread Makoto Sakaguchi (JIRA)

[ 
https://issues.apache.org/jira/browse/NET-405?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15906982#comment-15906982
 ] 

Makoto Sakaguchi edited comment on NET-405 at 3/17/17 12:04 PM:


It was ready for supporting IPv6.
https://github.com/apache/commons-net/pull/18

But, it does not work the existing test cases.


was (Author: umoxfo):
It was ready for supporting IPv6.
https://github.com/apache/commons-net/pull/17

But, it does not work the existing test cases.

> Support for IPv6 in SubnetUtils
> ---
>
> Key: NET-405
> URL: https://issues.apache.org/jira/browse/NET-405
> Project: Commons Net
>  Issue Type: Improvement
>Reporter: Marc Lefrancois
>
> Currently, we cannot use org.apache.commons.net.util.SubnetUtils with IPv6 
> addresses. This class will become less and less useful as more internet 
> device are only assigned IPv6 addresses since all available IPv4 address 
> blocks have now been attributed. 
> http://en.wikipedia.org/wiki/IPv4_address_exhaustion



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Comment Edited] (NET-405) Support for IPv6 in SubnetUtils

2017-03-17 Thread Makoto Sakaguchi (JIRA)

[ 
https://issues.apache.org/jira/browse/NET-405?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15906982#comment-15906982
 ] 

Makoto Sakaguchi edited comment on NET-405 at 3/17/17 11:52 AM:


It was ready for supporting IPv6.
https://github.com/apache/commons-net/pull/17

But, it does not work the existing test cases.


was (Author: umoxfo):
I am working on supporting for IPv6.
https://github.com/Umoxfo/experts-net/tree/IPv6/src/experts/net/subnet

> Support for IPv6 in SubnetUtils
> ---
>
> Key: NET-405
> URL: https://issues.apache.org/jira/browse/NET-405
> Project: Commons Net
>  Issue Type: Improvement
>Reporter: Marc Lefrancois
>
> Currently, we cannot use org.apache.commons.net.util.SubnetUtils with IPv6 
> addresses. This class will become less and less useful as more internet 
> device are only assigned IPv6 addresses since all available IPv4 address 
> blocks have now been attributed. 
> http://en.wikipedia.org/wiki/IPv4_address_exhaustion



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Comment Edited] (NET-405) Support for IPv6 in SubnetUtils

2017-03-13 Thread Makoto Sakaguchi (JIRA)

[ 
https://issues.apache.org/jira/browse/NET-405?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15906982#comment-15906982
 ] 

Makoto Sakaguchi edited comment on NET-405 at 3/13/17 7:36 PM:
---

I am working on supporting for IPv6.
https://github.com/Umoxfo/experts-net/tree/IPv6/src/experts/net/subnet


was (Author: umoxfo):
I am working on supporting IPv6.
https://github.com/Umoxfo/experts-net/tree/IPv6/src/experts/net/subnet

> Support for IPv6 in SubnetUtils
> ---
>
> Key: NET-405
> URL: https://issues.apache.org/jira/browse/NET-405
> Project: Commons Net
>  Issue Type: Improvement
>Reporter: Marc Lefrancois
>
> Currently, we cannot use org.apache.commons.net.util.SubnetUtils with IPv6 
> addresses. This class will become less and less useful as more internet 
> device are only assigned IPv6 addresses since all available IPv4 address 
> blocks have now been attributed. 
> http://en.wikipedia.org/wiki/IPv4_address_exhaustion



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (NET-405) Support for IPv6 in SubnetUtils

2017-03-13 Thread Makoto Sakaguchi (JIRA)

[ 
https://issues.apache.org/jira/browse/NET-405?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15906982#comment-15906982
 ] 

Makoto Sakaguchi commented on NET-405:
--

I am working on supporting IPv6.
https://github.com/Umoxfo/experts-net/tree/IPv6/src/experts/net/subnet

> Support for IPv6 in SubnetUtils
> ---
>
> Key: NET-405
> URL: https://issues.apache.org/jira/browse/NET-405
> Project: Commons Net
>  Issue Type: Improvement
>Reporter: Marc Lefrancois
>
> Currently, we cannot use org.apache.commons.net.util.SubnetUtils with IPv6 
> addresses. This class will become less and less useful as more internet 
> device are only assigned IPv6 addresses since all available IPv4 address 
> blocks have now been attributed. 
> http://en.wikipedia.org/wiki/IPv4_address_exhaustion



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-626) SubnetUtils#SubnetUtils - improved comment

2017-03-11 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-626?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-626:
-
Description: 
Describe of CIDR value was more clearly.
https://github.com/apache/commons-net/pull/16

  was:Describe of CIDR value was more clearly.


> SubnetUtils#SubnetUtils - improved comment
> --
>
> Key: NET-626
> URL: https://issues.apache.org/jira/browse/NET-626
> Project: Commons Net
>  Issue Type: Improvement
>Reporter: Makoto Sakaguchi
>Priority: Minor
>
> Describe of CIDR value was more clearly.
> https://github.com/apache/commons-net/pull/16



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Created] (NET-626) SubnetUtils#SubnetUtils - improved comment

2017-03-11 Thread Makoto Sakaguchi (JIRA)
Makoto Sakaguchi created NET-626:


 Summary: SubnetUtils#SubnetUtils - improved comment
 Key: NET-626
 URL: https://issues.apache.org/jira/browse/NET-626
 Project: Commons Net
  Issue Type: Improvement
Reporter: Makoto Sakaguchi
Priority: Minor


Describe of CIDR value was more clearly.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-623) SubnetUtils - fixed spelling errors

2017-03-09 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-623?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-623:
-
Description: 
Fixed spelling errors in the API document.
https://github.com/apache/commons-net/pull/14

  was:
Fixed spelling errors in the API document.
line 70: the hostcount -> the host count
line 115: adresses ->  addresses


> SubnetUtils - fixed spelling errors
> ---
>
> Key: NET-623
> URL: https://issues.apache.org/jira/browse/NET-623
> Project: Commons Net
>  Issue Type: Improvement
>Reporter: Makoto Sakaguchi
>
> Fixed spelling errors in the API document.
> https://github.com/apache/commons-net/pull/14



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-624) SubnetInfo#toCidrNotation - a wrong format subnet mask is allows

2017-03-09 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-624?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-624:
-
Description: 
An IPv4 subnet mask, which is also the network mask, must consist of a set of 
contiguous 1-bits followed by a block of 0-bits (i.e. 255.255.255.0), but it 
does not check.

{code}
/* 255.255.0.1 is ...0001 in  binary */
SubnetUtils su = new SubnetUtils("192.168.0.1", "255.255.0.1"); // expect error
SubnetInfo si = su.getInfo();
System.out.println(si.getNetmask()); // Expect error or 255.255.0.1
255.255.128.0
{code}

https://github.com/apache/commons-net/pull/13

  was:
An IPv4 subnet mask, which is also the network mask, must consist of a set of 
contiguous 1-bits followed by a block of 0-bits (i.e. 255.255.255.0), but it 
does not check.

{code}
/* 255.255.0.1 is ...0001 in  binary */
SubnetUtils su = new SubnetUtils("192.168.0.1", "255.255.0.1"); // expect error
SubnetInfo si = su.getInfo();
System.out.println(si.getNetmask()); // Expect error or 255.255.0.1
255.255.128.0
{code}

https://github.com/apache/commons-net/pull/12


> SubnetInfo#toCidrNotation - a wrong format subnet mask is allows
> 
>
> Key: NET-624
> URL: https://issues.apache.org/jira/browse/NET-624
> Project: Commons Net
>  Issue Type: Bug
>Affects Versions: 2.0
>Reporter: Makoto Sakaguchi
>
> An IPv4 subnet mask, which is also the network mask, must consist of a set of 
> contiguous 1-bits followed by a block of 0-bits (i.e. 255.255.255.0), but it 
> does not check.
> {code}
> /* 255.255.0.1 is ...0001 in  binary */
> SubnetUtils su = new SubnetUtils("192.168.0.1", "255.255.0.1"); // expect 
> error
> SubnetInfo si = su.getInfo();
> System.out.println(si.getNetmask()); // Expect error or 255.255.0.1
> 255.255.128.0
> {code}
> https://github.com/apache/commons-net/pull/13



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-624) SubnetInfo#toCidrNotation - a wrong format subnet mask is allows

2017-03-09 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-624?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-624:
-
Flags: Patch

> SubnetInfo#toCidrNotation - a wrong format subnet mask is allows
> 
>
> Key: NET-624
> URL: https://issues.apache.org/jira/browse/NET-624
> Project: Commons Net
>  Issue Type: Bug
>Affects Versions: 2.0
>Reporter: Makoto Sakaguchi
>
> An IPv4 subnet mask, which is also the network mask, must consist of a set of 
> contiguous 1-bits followed by a block of 0-bits (i.e. 255.255.255.0), but it 
> does not check.
> {code}
> /* 255.255.0.1 is ...0001 in  binary */
> SubnetUtils su = new SubnetUtils("192.168.0.1", "255.255.0.1"); // expect 
> error
> SubnetInfo si = su.getInfo();
> System.out.println(si.getNetmask()); // Expect error or 255.255.0.1
> 255.255.128.0
> {code}
> https://github.com/apache/commons-net/pull/12



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-624) SubnetInfo#toCidrNotation - a wrong format subnet mask is allows

2017-03-09 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-624?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-624:
-
Flags:   (was: Patch)

> SubnetInfo#toCidrNotation - a wrong format subnet mask is allows
> 
>
> Key: NET-624
> URL: https://issues.apache.org/jira/browse/NET-624
> Project: Commons Net
>  Issue Type: Bug
>Affects Versions: 2.0
>Reporter: Makoto Sakaguchi
>
> An IPv4 subnet mask, which is also the network mask, must consist of a set of 
> contiguous 1-bits followed by a block of 0-bits (i.e. 255.255.255.0), but it 
> does not check.
> {code}
> /* 255.255.0.1 is ...0001 in  binary */
> SubnetUtils su = new SubnetUtils("192.168.0.1", "255.255.0.1"); // expect 
> error
> SubnetInfo si = su.getInfo();
> System.out.println(si.getNetmask()); // Expect error or 255.255.0.1
> 255.255.128.0
> {code}
> https://github.com/apache/commons-net/pull/12



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-624) SubnetInfo#toCidrNotation - a wrong format subnet mask is allows

2017-03-09 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-624?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-624:
-
Description: 
An IPv4 subnet mask, which is also the network mask, must consist of a set of 
contiguous 1-bits followed by a block of 0-bits (i.e. 255.255.255.0), but it 
does not check.

{code}
/* 255.255.0.1 is ...0001 in  binary */
SubnetUtils su = new SubnetUtils("192.168.0.1", "255.255.0.1"); // expect error
SubnetInfo si = su.getInfo();
System.out.println(si.getNetmask()); // Expect error or 255.255.0.1
255.255.128.0
{code}

https://github.com/apache/commons-net/pull/12

  was:
An IPv4 subnet mask, which is also the network mask, must consist of a set of 
contiguous 1-bits followed by a block of 0-bits (i.e. 255.255.255.0), but it 
does not check.

{code}
/* 255.255.0.1 is ...0001 in  binary */
SubnetUtils su = new SubnetUtils("192.168.0.1", "255.255.0.1"); // expect error
SubnetInfo si = su.getInfo();
System.out.println(si.getNetmask()); // Expect error or 255.255.0.1
255.255.128.0
{code}


> SubnetInfo#toCidrNotation - a wrong format subnet mask is allows
> 
>
> Key: NET-624
> URL: https://issues.apache.org/jira/browse/NET-624
> Project: Commons Net
>  Issue Type: Bug
>Affects Versions: 2.0
>Reporter: Makoto Sakaguchi
>
> An IPv4 subnet mask, which is also the network mask, must consist of a set of 
> contiguous 1-bits followed by a block of 0-bits (i.e. 255.255.255.0), but it 
> does not check.
> {code}
> /* 255.255.0.1 is ...0001 in  binary */
> SubnetUtils su = new SubnetUtils("192.168.0.1", "255.255.0.1"); // expect 
> error
> SubnetInfo si = su.getInfo();
> System.out.println(si.getNetmask()); // Expect error or 255.255.0.1
> 255.255.128.0
> {code}
> https://github.com/apache/commons-net/pull/12



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-624) SubnetInfo#toCidrNotation - a wrong format subnet mask is allows

2017-03-09 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-624?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-624:
-
Summary: SubnetInfo#toCidrNotation - a wrong format subnet mask is allows  
(was: SubnetInfo#toCidrNotation: a wrong format subnet mask is allows)

> SubnetInfo#toCidrNotation - a wrong format subnet mask is allows
> 
>
> Key: NET-624
> URL: https://issues.apache.org/jira/browse/NET-624
> Project: Commons Net
>  Issue Type: Bug
>Affects Versions: 2.0
>Reporter: Makoto Sakaguchi
>
> An IPv4 subnet mask, which is also the network mask, must consist of a set of 
> contiguous 1-bits followed by a block of 0-bits (i.e. 255.255.255.0), but it 
> does not check.
> {code}
> /* 255.255.0.1 is ...0001 in  binary */
> SubnetUtils su = new SubnetUtils("192.168.0.1", "255.255.0.1"); // expect 
> error
> SubnetInfo si = su.getInfo();
> System.out.println(si.getNetmask()); // Expect error or 255.255.0.1
> 255.255.128.0
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-624) SubnetInfo#toCidrNotation: A wrong format subnet mask is allows.

2017-03-09 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-624?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-624:
-
Summary: SubnetInfo#toCidrNotation: A wrong format subnet mask is allows.  
(was: SubnetInfo#toCidrNotation - allow a subnet mask)

> SubnetInfo#toCidrNotation: A wrong format subnet mask is allows.
> 
>
> Key: NET-624
> URL: https://issues.apache.org/jira/browse/NET-624
> Project: Commons Net
>  Issue Type: Bug
>Affects Versions: 2.0
>Reporter: Makoto Sakaguchi
>
> An IPv4 subnet mask, which is also the network mask, must consist of a set of 
> contiguous 1-bits followed by a block of 0-bits (i.e. 255.255.255.0), but it 
> does not check.
> {code}
> /* 255.255.0.1 is ...0001 in  binary */
> SubnetUtils su = new SubnetUtils("192.168.0.1", "255.255.0.1"); // expect 
> error
> SubnetInfo si = su.getInfo();
> System.out.println(si.getNetmask()); // Expect error or 255.255.0.1
> 255.255.128.0
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-624) SubnetInfo#toCidrNotation: a wrong format subnet mask is allows

2017-03-09 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-624?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-624:
-
Summary: SubnetInfo#toCidrNotation: a wrong format subnet mask is allows  
(was: SubnetInfo#toCidrNotation: A wrong format subnet mask is allows)

> SubnetInfo#toCidrNotation: a wrong format subnet mask is allows
> ---
>
> Key: NET-624
> URL: https://issues.apache.org/jira/browse/NET-624
> Project: Commons Net
>  Issue Type: Bug
>Affects Versions: 2.0
>Reporter: Makoto Sakaguchi
>
> An IPv4 subnet mask, which is also the network mask, must consist of a set of 
> contiguous 1-bits followed by a block of 0-bits (i.e. 255.255.255.0), but it 
> does not check.
> {code}
> /* 255.255.0.1 is ...0001 in  binary */
> SubnetUtils su = new SubnetUtils("192.168.0.1", "255.255.0.1"); // expect 
> error
> SubnetInfo si = su.getInfo();
> System.out.println(si.getNetmask()); // Expect error or 255.255.0.1
> 255.255.128.0
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-624) SubnetInfo#toCidrNotation: A wrong format subnet mask is allows

2017-03-09 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-624?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-624:
-
Summary: SubnetInfo#toCidrNotation: A wrong format subnet mask is allows  
(was: SubnetInfo#toCidrNotation: A wrong format subnet mask is allows.)

> SubnetInfo#toCidrNotation: A wrong format subnet mask is allows
> ---
>
> Key: NET-624
> URL: https://issues.apache.org/jira/browse/NET-624
> Project: Commons Net
>  Issue Type: Bug
>Affects Versions: 2.0
>Reporter: Makoto Sakaguchi
>
> An IPv4 subnet mask, which is also the network mask, must consist of a set of 
> contiguous 1-bits followed by a block of 0-bits (i.e. 255.255.255.0), but it 
> does not check.
> {code}
> /* 255.255.0.1 is ...0001 in  binary */
> SubnetUtils su = new SubnetUtils("192.168.0.1", "255.255.0.1"); // expect 
> error
> SubnetInfo si = su.getInfo();
> System.out.println(si.getNetmask()); // Expect error or 255.255.0.1
> 255.255.128.0
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-624) SubnetInfo#toCidrNotation - allow a subnet mask

2017-03-09 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-624?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-624:
-
Description: 
An IPv4 subnet mask, which is also the network mask, must consist of a set of 
contiguous 1-bits followed by a block of 0-bits (i.e. 255.255.255.0), but it 
does not check.

{code}
/* 255.255.0.1 is ...0001 in  binary */
SubnetUtils su = new SubnetUtils("192.168.0.1", "255.255.0.1"); // expect error
SubnetInfo si = su.getInfo();
System.out.println(si.getNetmask()); // Expect error or 255.255.0.1
255.255.128.0
{code}

  was:
An IPv4 subnet mask, which is also the network mask, must consist of a set of 
contiguous 1-bits followed by a block of 0-bits (i.e. 255.255.255.0), but it 
does not check.

{code}
/* 255.255.0.1 is ...0001 in  binary */
SubnetUtils su = new Subnet("192.168.0.1", "255.255.0.1"); // expect error
SubnetInfo si = su.getInfo();
System.out.println(si.getNetmask()); // Expect error or 255.255.0.1
255.255.128.0
{code}


> SubnetInfo#toCidrNotation - allow a subnet mask
> ---
>
> Key: NET-624
> URL: https://issues.apache.org/jira/browse/NET-624
> Project: Commons Net
>  Issue Type: Bug
>Affects Versions: 2.0
>Reporter: Makoto Sakaguchi
>
> An IPv4 subnet mask, which is also the network mask, must consist of a set of 
> contiguous 1-bits followed by a block of 0-bits (i.e. 255.255.255.0), but it 
> does not check.
> {code}
> /* 255.255.0.1 is ...0001 in  binary */
> SubnetUtils su = new SubnetUtils("192.168.0.1", "255.255.0.1"); // expect 
> error
> SubnetInfo si = su.getInfo();
> System.out.println(si.getNetmask()); // Expect error or 255.255.0.1
> 255.255.128.0
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Created] (NET-624) SubnetInfo#toCidrNotation - allow a subnet mask

2017-03-09 Thread Makoto Sakaguchi (JIRA)
Makoto Sakaguchi created NET-624:


 Summary: SubnetInfo#toCidrNotation - allow a subnet mask
 Key: NET-624
 URL: https://issues.apache.org/jira/browse/NET-624
 Project: Commons Net
  Issue Type: Bug
Affects Versions: 2.0
Reporter: Makoto Sakaguchi


An IPv4 subnet mask, which is also the network mask, must consist of a set of 
contiguous 1-bits followed by a block of 0-bits (i.e. 255.255.255.0), but it 
does not check.

{code}
/* 255.255.0.1 is ...0001 in  binary */
SubnetUtils su = new Subnet("192.168.0.1", "255.255.0.1"); // expect error
SubnetInfo si = su.getInfo();
System.out.println(si.getNetmask()); // Expect error or 255.255.0.1
255.255.128.0
{code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-622) SubnetInfo#getCidrSignature - improve functions

2017-03-04 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-622?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-622:
-
Description: 
The processing part of "netmask" is converted an integer to a string to an 
integer.
{code}
/* SubnetUtils.SubnetInfo#getCidrSignature() */
// a binary mask address
int netmask = 0b;

// convert to a dotted decimal address
String maskStr = format(toArray(netmask)); // maskStr: "255.0.0.0"

/* SubnetUtils#toCidrNotation() */
// counting the 1-bit population
int cidr = pop(toInteger(maskStr)); // cidr: 8
{code}

So, I suggest to create CIDR from the netmask variable.
https://github.com/apache/commons-net/pull/10


  was:
The processing part of "netmask" is converted an integer to a string to an 
integer.
{code}
/* SubnetUtils.SubnetInfo#getCidrSignature() */
// a binary mask address
int netmask = 0b;

// convert to a dotted decimal address
String maskStr = format(toArray(netmask)); // maskStr: "255.0.0.0"

/* SubnetUtils#toCidrNotation() */
// counting the 1-bit population
int cidr = pop(toInteger(maskStr)); // cidr: 8
{code}

So, I suggest to create CIDR from the netmask variable.
https://github.com/apache/commons-net/pull/9



> SubnetInfo#getCidrSignature - improve functions
> ---
>
> Key: NET-622
> URL: https://issues.apache.org/jira/browse/NET-622
> Project: Commons Net
>  Issue Type: Improvement
>Reporter: Makoto Sakaguchi
>Priority: Minor
>
> The processing part of "netmask" is converted an integer to a string to an 
> integer.
> {code}
> /* SubnetUtils.SubnetInfo#getCidrSignature() */
> // a binary mask address
> int netmask = 0b;
> // convert to a dotted decimal address
> String maskStr = format(toArray(netmask)); // maskStr: "255.0.0.0"
> /* SubnetUtils#toCidrNotation() */
> // counting the 1-bit population
> int cidr = pop(toInteger(maskStr)); // cidr: 8
> {code}
> So, I suggest to create CIDR from the netmask variable.
> https://github.com/apache/commons-net/pull/10



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-623) SubnetUtils - fixed spelling errors

2017-03-04 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-623?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-623:
-
Description: 
Fixed spelling errors in the API document.
line 70: the hostcount -> the host count
line 115: adresses ->  addresses

  was:
Fixed spelling error.
line 70: the hostcount -> the host count
line 115: adresses ->  addresses


> SubnetUtils - fixed spelling errors
> ---
>
> Key: NET-623
> URL: https://issues.apache.org/jira/browse/NET-623
> Project: Commons Net
>  Issue Type: Improvement
>Reporter: Makoto Sakaguchi
>
> Fixed spelling errors in the API document.
> line 70: the hostcount -> the host count
> line 115: adresses ->  addresses



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-623) SubnetUtils - fixed spelling errors

2017-03-04 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-623?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-623:
-
Priority: Major  (was: Trivial)

> SubnetUtils - fixed spelling errors
> ---
>
> Key: NET-623
> URL: https://issues.apache.org/jira/browse/NET-623
> Project: Commons Net
>  Issue Type: Improvement
>Reporter: Makoto Sakaguchi
>
> Fixed spelling error.
> line 70: the hostcount -> the host count
> line 115: adresses ->  addresses



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-623) SubnetUtils - fixed spelling errors

2017-03-04 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-623?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-623:
-
Summary: SubnetUtils - fixed spelling errors  (was: SubnetUtils - fixed 
spelling errors of the fixed spelling errors)

> SubnetUtils - fixed spelling errors
> ---
>
> Key: NET-623
> URL: https://issues.apache.org/jira/browse/NET-623
> Project: Commons Net
>  Issue Type: Improvement
>Reporter: Makoto Sakaguchi
>Priority: Trivial
>
> Fixed spelling error.
> line 70: the hostcount -> the host count
> line 115: adresses ->  addresses



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-623) SubnetUtils - fixed spelling errors of the fixed spelling errors

2017-03-04 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-623?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-623:
-
Summary: SubnetUtils - fixed spelling errors of the fixed spelling errors  
(was: SubnetUtils - fixed spelling errors of the fixed spelling errors of the 
API document)

> SubnetUtils - fixed spelling errors of the fixed spelling errors
> 
>
> Key: NET-623
> URL: https://issues.apache.org/jira/browse/NET-623
> Project: Commons Net
>  Issue Type: Improvement
>Reporter: Makoto Sakaguchi
>Priority: Trivial
>
> Fixed spelling error.
> line 70: the hostcount -> the host count
> line 115: adresses ->  addresses



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-623) SubnetUtils - fixed spelling errors of the fixed spelling errors of the API document

2017-03-04 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-623?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-623:
-
Summary: SubnetUtils - fixed spelling errors of the fixed spelling errors 
of the API document  (was: SubnetUtils - improved comments)

> SubnetUtils - fixed spelling errors of the fixed spelling errors of the API 
> document
> 
>
> Key: NET-623
> URL: https://issues.apache.org/jira/browse/NET-623
> Project: Commons Net
>  Issue Type: Improvement
>Reporter: Makoto Sakaguchi
>Priority: Trivial
>
> Fixed spelling error.
> line 70: the hostcount -> the host count
> line 115: adresses ->  addresses



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Created] (NET-623) SubnetUtils - improved comments

2017-03-04 Thread Makoto Sakaguchi (JIRA)
Makoto Sakaguchi created NET-623:


 Summary: SubnetUtils - improved comments
 Key: NET-623
 URL: https://issues.apache.org/jira/browse/NET-623
 Project: Commons Net
  Issue Type: Improvement
Reporter: Makoto Sakaguchi
Priority: Trivial


Fixed spelling error.
line 70: the hostcount -> the host count
line 115: adresses ->  addresses



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-622) SubnetInfo#getCidrSignature - improve functions

2017-03-04 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-622?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-622:
-
Description: 
The processing part of "netmask" is converted an integer to a string to an 
integer.
{code}
/* SubnetUtils.SubnetInfo#getCidrSignature() */
// a binary mask address
int netmask = 0b;

// convert to a dotted decimal address
String maskStr = format(toArray(netmask)); // maskStr: "255.0.0.0"

/* SubnetUtils#toCidrNotation() */
// counting the 1-bit population
int cidr = pop(toInteger(maskStr)); // cidr: 8
{code}

So, I suggest to create CIDR from the netmask variable.
https://github.com/apache/commons-net/pull/9


  was:
The processing part of "netmask" is converted an integer to a string to an 
integer.
{code}
// a binary mask address
int netmask = 0b;

// convert to a dotted decimal address
String maskStr = format(toArray(netmask)); // maskStr: "255.0.0.0"

// counting the 1-bit population
int cidr = pop(toInteger(maskStr)); // cidr: 8
{code}

So, I suggest to create CIDR from the netmask variable.
https://github.com/apache/commons-net/pull/9



> SubnetInfo#getCidrSignature - improve functions
> ---
>
> Key: NET-622
> URL: https://issues.apache.org/jira/browse/NET-622
> Project: Commons Net
>  Issue Type: Improvement
>Reporter: Makoto Sakaguchi
>Priority: Minor
>
> The processing part of "netmask" is converted an integer to a string to an 
> integer.
> {code}
> /* SubnetUtils.SubnetInfo#getCidrSignature() */
> // a binary mask address
> int netmask = 0b;
> // convert to a dotted decimal address
> String maskStr = format(toArray(netmask)); // maskStr: "255.0.0.0"
> /* SubnetUtils#toCidrNotation() */
> // counting the 1-bit population
> int cidr = pop(toInteger(maskStr)); // cidr: 8
> {code}
> So, I suggest to create CIDR from the netmask variable.
> https://github.com/apache/commons-net/pull/9



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-622) SubnetInfo#getCidrSignature - improve functions

2017-03-04 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-622?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-622:
-
Description: 
The processing part of "netmask" is converted an integer to a string to an 
integer.
{code}
// a binary mask address
int netmask = 0b;

// convert to a dotted decimal address
String maskStr = format(toArray(netmask));

// counting the 1-bit population
int cidr = pop(toInteger(maskStr)); // cidr: 8
{code}

So, I suggest to create CIDR from the netmask variable.
https://github.com/apache/commons-net/pull/9


  was:
The processing part of "netmask" is converted an integer to a string to an 
integer.
{code}
// a binary mask address
int netmask = 0b;

// convert to a dotted decimal address
String maskStr = format(toArray(netmask));

// counting the 1-bit population
int cidr = pop(toInteger(maskStr));
{code}

So, I suggest to create CIDR from the netmask variable.
https://github.com/apache/commons-net/pull/9



> SubnetInfo#getCidrSignature - improve functions
> ---
>
> Key: NET-622
> URL: https://issues.apache.org/jira/browse/NET-622
> Project: Commons Net
>  Issue Type: Improvement
>Reporter: Makoto Sakaguchi
>Priority: Minor
>
> The processing part of "netmask" is converted an integer to a string to an 
> integer.
> {code}
> // a binary mask address
> int netmask = 0b;
> // convert to a dotted decimal address
> String maskStr = format(toArray(netmask));
> // counting the 1-bit population
> int cidr = pop(toInteger(maskStr)); // cidr: 8
> {code}
> So, I suggest to create CIDR from the netmask variable.
> https://github.com/apache/commons-net/pull/9



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-622) SubnetInfo#getCidrSignature - improve functions

2017-03-04 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-622?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-622:
-
Description: 
The processing part of "netmask" is converted an integer to a string to an 
integer.
{code}
// a binary mask address
int netmask = 0b;

// convert to a dotted decimal address
String maskStr = format(toArray(netmask)); // maskStr: "255.0.0.0"

// counting the 1-bit population
int cidr = pop(toInteger(maskStr)); // cidr: 8
{code}

So, I suggest to create CIDR from the netmask variable.
https://github.com/apache/commons-net/pull/9


  was:
The processing part of "netmask" is converted an integer to a string to an 
integer.
{code}
// a binary mask address
int netmask = 0b;

// convert to a dotted decimal address
String maskStr = format(toArray(netmask));

// counting the 1-bit population
int cidr = pop(toInteger(maskStr)); // cidr: 8
{code}

So, I suggest to create CIDR from the netmask variable.
https://github.com/apache/commons-net/pull/9



> SubnetInfo#getCidrSignature - improve functions
> ---
>
> Key: NET-622
> URL: https://issues.apache.org/jira/browse/NET-622
> Project: Commons Net
>  Issue Type: Improvement
>Reporter: Makoto Sakaguchi
>Priority: Minor
>
> The processing part of "netmask" is converted an integer to a string to an 
> integer.
> {code}
> // a binary mask address
> int netmask = 0b;
> // convert to a dotted decimal address
> String maskStr = format(toArray(netmask)); // maskStr: "255.0.0.0"
> // counting the 1-bit population
> int cidr = pop(toInteger(maskStr)); // cidr: 8
> {code}
> So, I suggest to create CIDR from the netmask variable.
> https://github.com/apache/commons-net/pull/9



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-622) SubnetInfo#getCidrSignature - improve functions

2017-03-04 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-622?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-622:
-
Description: 
The processing part of "netmask" is converted an integer to a string to an 
integer.
{code}
// a binary mask address
int netmask = 0b;

// convert to a dotted decimal address
String maskStr = format(toArray(netmask));

// counting the 1-bit population
int cidr = pop(toInteger(maskStr));
{code}

So, I suggest to create CIDR from the netmask variable.
https://github.com/apache/commons-net/pull/9


  was:
The processing part of "netmask" is converted an integer to a string to an 
integer.
{code}
int netmask = 0b; // a binary mask address

// convert to a dotted decimal address
String maskStr = format(toArray(netmask));

// counting the 1-bit population
int cidr = pop(toInteger(maskStr));
{code}

So, I suggest to create CIDR from the netmask variable.


> SubnetInfo#getCidrSignature - improve functions
> ---
>
> Key: NET-622
> URL: https://issues.apache.org/jira/browse/NET-622
> Project: Commons Net
>  Issue Type: Improvement
>Reporter: Makoto Sakaguchi
>Priority: Minor
>
> The processing part of "netmask" is converted an integer to a string to an 
> integer.
> {code}
> // a binary mask address
> int netmask = 0b;
> // convert to a dotted decimal address
> String maskStr = format(toArray(netmask));
> // counting the 1-bit population
> int cidr = pop(toInteger(maskStr));
> {code}
> So, I suggest to create CIDR from the netmask variable.
> https://github.com/apache/commons-net/pull/9



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-622) SubnetInfo#getCidrSignature - improve functions

2017-03-04 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-622?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-622:
-
Description: 
The processing part of "netmask" is converted an integer to a string to an 
integer.
{code}
int netmask = 0b; // a binary mask address

// convert to a dotted decimal address
String maskStr = format(toArray(netmask));

// counting the 1-bit population
int cidr = pop(toInteger(maskStr));
{code}

So, I suggest to create CIDR from the netmask variable.

  was:
The processing part of "netmask" is converted an integer to a string to an 
integer.
{code}
int netmask = 0b; // a binary netmask

// convert to a dotted decimal address
String maskStr = format(toArray(netmask));

// counting the 1-bit population
int cidr = pop(toInteger(maskStr));
{code}

So, I suggest to create CIDR from the netmask variable.


> SubnetInfo#getCidrSignature - improve functions
> ---
>
> Key: NET-622
> URL: https://issues.apache.org/jira/browse/NET-622
> Project: Commons Net
>  Issue Type: Improvement
>Reporter: Makoto Sakaguchi
>Priority: Minor
>
> The processing part of "netmask" is converted an integer to a string to an 
> integer.
> {code}
> int netmask = 0b; // a binary mask address
> // convert to a dotted decimal address
> String maskStr = format(toArray(netmask));
> // counting the 1-bit population
> int cidr = pop(toInteger(maskStr));
> {code}
> So, I suggest to create CIDR from the netmask variable.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Created] (NET-622) SubnetInfo#getCidrSignature - improve functions

2017-03-04 Thread Makoto Sakaguchi (JIRA)
Makoto Sakaguchi created NET-622:


 Summary: SubnetInfo#getCidrSignature - improve functions
 Key: NET-622
 URL: https://issues.apache.org/jira/browse/NET-622
 Project: Commons Net
  Issue Type: Improvement
Reporter: Makoto Sakaguchi
Priority: Minor


The processing part of "netmask" is converted an integer to a string to an 
integer.
{code}
int netmask = 0b; // a binary netmask

// convert to a dotted decimal address
String maskStr = format(toArray(netmask));

// counting the 1-bit population
int cidr = pop(toInteger(maskStr));
{code}

So, I suggest to create CIDR from the netmask variable.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-621) SubnetUtils#SubnetInfo - remove unnecessary accessors

2017-03-03 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-621?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-621:
-
Summary: SubnetUtils#SubnetInfo - remove unnecessary accessors  (was: 
SubnetUtils#SubnetInfo - Remove unnecessary accessors)

> SubnetUtils#SubnetInfo - remove unnecessary accessors
> -
>
> Key: NET-621
> URL: https://issues.apache.org/jira/browse/NET-621
> Project: Commons Net
>  Issue Type: Improvement
>Reporter: Makoto Sakaguchi
>Priority: Minor
>
> The below methods do not actually work.
> - private int netmask()   \{ return netmask; \}
> - private int network()   \{ return network; \}
> - private int address()   \{ return address; \}
> - private int broadcast() \{ return broadcast; \}
> So, I suggest to remove them.
> https://github.com/apache/commons-net/pull/8



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-621) SubnetUtils#SubnetInfo - Remove unnecessary accessors

2017-03-03 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-621?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-621:
-
Description: 
The below methods do not actually work.
- private int netmask()   \{ return netmask; \}
- private int network()   \{ return network; \}
- private int address()   \{ return address; \}
- private int broadcast() \{ return broadcast; \}

So, I suggest to remove them.
https://github.com/apache/commons-net/pull/8

  was:
The below methods do not actually work.
- private int netmask()   \{ return netmask; \}
- private int network()   \{ return network; \}
- private int address()   \{ return address; \}
- private int broadcast() \{ return broadcast; \}

So, I suggest to remove them.


> SubnetUtils#SubnetInfo - Remove unnecessary accessors
> -
>
> Key: NET-621
> URL: https://issues.apache.org/jira/browse/NET-621
> Project: Commons Net
>  Issue Type: Improvement
>Reporter: Makoto Sakaguchi
>Priority: Minor
>
> The below methods do not actually work.
> - private int netmask()   \{ return netmask; \}
> - private int network()   \{ return network; \}
> - private int address()   \{ return address; \}
> - private int broadcast() \{ return broadcast; \}
> So, I suggest to remove them.
> https://github.com/apache/commons-net/pull/8



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-621) SubnetUtils#SubnetInfo - Remove unnecessary accessors

2017-03-02 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-621?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-621:
-
Affects Version/s: (was: 1.2.2)
   (was: 1.2.1)
   (was: 1.1)
   (was: 1.1.1)
   (was: 1.0)
   (was: 1.2)
   (was: 1.3)

> SubnetUtils#SubnetInfo - Remove unnecessary accessors
> -
>
> Key: NET-621
> URL: https://issues.apache.org/jira/browse/NET-621
> Project: Commons Net
>  Issue Type: Improvement
>Reporter: Makoto Sakaguchi
>Priority: Minor
>
> The below methods do not actually work.
> - private int netmask()   \{ return netmask; \}
> - private int network()   \{ return network; \}
> - private int address()   \{ return address; \}
> - private int broadcast() \{ return broadcast; \}
> So, I suggest to remove them.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-621) SubnetUtils#SubnetInfo - Remove unnecessary accessors

2017-03-02 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-621?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-621:
-
Affects Version/s: (was: 1.4)

> SubnetUtils#SubnetInfo - Remove unnecessary accessors
> -
>
> Key: NET-621
> URL: https://issues.apache.org/jira/browse/NET-621
> Project: Commons Net
>  Issue Type: Improvement
>Reporter: Makoto Sakaguchi
>Priority: Minor
>
> The below methods do not actually work.
> - private int netmask()   \{ return netmask; \}
> - private int network()   \{ return network; \}
> - private int address()   \{ return address; \}
> - private int broadcast() \{ return broadcast; \}
> So, I suggest to remove them.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-621) SubnetUtils#SubnetInfo - Remove unnecessary accessors

2017-03-02 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-621?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-621:
-
Affects Version/s: (was: 1.2.2)
   (was: 1.2.1)
   (was: 1.1)
   (was: 1.1.1)
   (was: 1.0)
   (was: 1.2)
   (was: 1.3)

> SubnetUtils#SubnetInfo - Remove unnecessary accessors
> -
>
> Key: NET-621
> URL: https://issues.apache.org/jira/browse/NET-621
> Project: Commons Net
>  Issue Type: Improvement
>Affects Versions: 1.0, 1.1, 1.1.1, 1.2, 1.2.1, 1.2.2, 1.3, 1.4
>Reporter: Makoto Sakaguchi
>Priority: Minor
>
> The below methods do not actually work.
> - private int netmask()   \{ return netmask; \}
> - private int network()   \{ return network; \}
> - private int address()   \{ return address; \}
> - private int broadcast() \{ return broadcast; \}
> So, I suggest to remove them.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (NET-621) SubnetUtils#SubnetInfo - Remove unnecessary accessors

2017-03-02 Thread Makoto Sakaguchi (JIRA)

 [ 
https://issues.apache.org/jira/browse/NET-621?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Makoto Sakaguchi updated NET-621:
-
Affects Version/s: 1.0
   1.1
   1.1.1
   1.2
   1.2.1
   1.2.2
   1.3

> SubnetUtils#SubnetInfo - Remove unnecessary accessors
> -
>
> Key: NET-621
> URL: https://issues.apache.org/jira/browse/NET-621
> Project: Commons Net
>  Issue Type: Improvement
>Affects Versions: 1.0, 1.1, 1.1.1, 1.2, 1.2.1, 1.2.2, 1.3, 1.4
>Reporter: Makoto Sakaguchi
>Priority: Minor
>
> The below methods do not actually work.
> - private int netmask()   \{ return netmask; \}
> - private int network()   \{ return network; \}
> - private int address()   \{ return address; \}
> - private int broadcast() \{ return broadcast; \}
> So, I suggest to remove them.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


  1   2   >