|
Posted by Mark Clements on February 28, 2008, 1:40 am
Please log in for more thread options Saurabh Pahuja wrote:
> Hi All,
>
> I need a small help.
> This module has been used by automation team at my company earlier but
> i am unable to locate it on CPAN.
>
> Can someone point me to the location? I need to use this module itself
> not another substitute as this helps me build on existing automation.
>
> Thanks & Regards
> Saurabh
>
The only reference to it that I can find is that Net::Subnet::Count from
2000 or so uses it. My memory is trying to tell me that I've used
something called that at some time in the past, but I may well be
confusing it with something else.
If I were you I would be tempted to build a façade module. Create a module
IP::Address
which acts as a wrapper around something that you *can* find that
provides similar functionality - Net::IP or NetAddr::IP, for example. If
IP::Address has a method call "foo", for example, then you would need to
forward this call on to method "bar" in the wrapped module. You may need
to transform parameters before forwarding.
Mark
|