in reply to Re: Re: Contolling ports and connections from perl
in thread Contolling ports and connections from perl
The stark fact of the matter is that one of the core differences between platforms is how they manage, control and apply permissions to running processes. Network stacks are even more flaky since a number of platforms have multiple, different IP/network systems that can be installed.
If you want the fine-grained control you are looking for you will have to get into platform specific code. Consider writing what you are doing as a Module that internally figures out what platform you are running on and calls the proper sub-module that overrides certain methods with platform specific ones. That way you get a single interface around separate platforms.
--
$you = new YOU;
honk() if $you->love(perl)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Contolling ports and connections from perl
by jepri (Parson) on Jan 15, 2001 at 22:10 UTC |