Re: Getting a free TCP port & blocking it

2008-03-01 Thread theneb
On Feb 29, 11:11 pm, Tim Roberts <[EMAIL PROTECTED]> wrote: > theneb <[EMAIL PROTECTED]> wrote: > >Hi all, > >I'm attempting to block a TCP port from any other application from > >using it until I free it from python, this is so that: > >1). Generate a random free user-space port > >2). Generate th

Re: Getting a free TCP port & blocking it

2008-02-29 Thread Tim Roberts
theneb <[EMAIL PROTECTED]> wrote: >Hi all, >I'm attempting to block a TCP port from any other application from >using it until I free it from python, this is so that: >1). Generate a random free user-space port >2). Generate the script for the external program with the port >3). Free the port befor

Getting a free TCP port & blocking it

2008-02-29 Thread theneb
Hi all, I'm attempting to block a TCP port from any other application from using it until I free it from python, this is so that: 1). Generate a random free user-space port 2). Generate the script for the external program with the port 3). Free the port before external program execution. This is w