summaryrefslogtreecommitdiff
path: root/ext/sockets/tests/socket_sendto_params.phpt
blob: f232258ec0ae04f714ace56768fa4d68a9ace549 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
ext/sockets - socket_sendto - test with incorrect parameters
--SKIPIF--
<?php
    if (!extension_loaded('sockets')) {
        die('skip sockets extension not available.');
    }
?>
--FILE--
<?php
    $rand = rand(1,999);
    $s_c = socket_create_listen(31330+$rand);
    $s_w = socket_sendto($s_c, "foo", -1, MSG_OOB, '127.0.0.1');
    socket_close($s_c);
?>
--EXPECTF--
Warning: socket_sendto(): Length cannot be negative in %s on line %i