php-general Digest 4 Sep 2011 15:30:37 -0000 Issue 7468

Topics (messages 314715 through 314717):

Re: How to have a smooth hairless skin
        314715 by: Ashley Sheridan
        314716 by: Sean Greenslade

socket_bind to an ssl:// address
        314717 by: Chris Bowler

Administrivia:

To subscribe to the digest, e-mail:
        php-general-digest-subscr...@lists.php.net

To unsubscribe from the digest, e-mail:
        php-general-digest-unsubscr...@lists.php.net

To post to the list, e-mail:
        php-gene...@lists.php.net


----------------------------------------------------------------------
--- Begin Message ---

How to have a smooth hairless skin <t...@lnfp.gov.cn> wrote:

>How to have a smooth hairless skin.
>       Hairless in the bikini zone.
>            Click  here:
>
>                   http://www.removehair.tk
>
>
>--
>PHP General Mailing List (http://www.php.net/)
>To unsubscribe, visit: http://www.php.net/unsub.php


How does one go about compiling that module from source then? It's amazing what 
php can do these days!

Thanks,
Ash
http://www.ashleysheridan.co.uk
--
Sent from my Android phone with K-9 Mail. Please excuse my brevity.

--- End Message ---
--- Begin Message ---
On Sat, Sep 3, 2011 at 8:44 PM, Ashley Sheridan 
<a...@ashleysheridan.co.uk>wrote:

>
>
> How to have a smooth hairless skin <t...@lnfp.gov.cn> wrote:
>
> >How to have a smooth hairless skin.
> >       Hairless in the bikini zone.
> >            Click  here:
> >
> >                <snippity />
>
>
>
> How does one go about compiling that module from source then? It's amazing
> what php can do these days!
>
> Thanks,
> Ash
> http://www.ashleysheridan.co.uk
> --
>

I think it's just a make flag. --with-hair-removal or something.


-- 
--Zootboy

Sent from my PC.

--- End Message ---
--- Begin Message ---
Hi ive been using this no problems

$sourceip = 'xx.xx.xx.xx'; //IP to bind
$sock = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
socket_bind($sock, $sourceip);
socket_connect($sock, 'dac.nic.uk', 3043);

But I need to connect to ssl://epp.nominet.org.uk:700 and this fails as it does not understand the ssl:// part.

I tried to do this using streams ,

if (function_exists('stream_context_create') && function_exists('stream_socket_client'))
$socket_options = array('socket' => array('bindto' => 'xx.xx.xx.xx')
$socket_context = stream_context_create($socket_options)
$socket = stream_socket_client('ssl://epp.nominet.org.uk:700', $errno,
$errstr, 30, STREAM_CLIENT_CONNECT, $socket_context);

but whenever I connect the remote connection still see's me as my servers main IP rather then then IP im trying to bind.





--- End Message ---

Reply via email to