initial commit

This commit is contained in:
2016-10-23 20:05:05 +02:00
commit 2b6108425b
56 changed files with 9071 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
$msg = $_GET['key'];
if (isset($msg)) {
$sock = socket_create(AF_INET, SOCK_DGRAM, SOL_UDP);
$len = strlen($msg);
socket_sendto($sock, $msg, $len, 0, 'localhost', 5100);
socket_close($sock);
}
?>