You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
366 B
PHTML
19 lines
366 B
PHTML
18 years ago
|
<?php
|
||
|
|
||
|
|
||
|
function SendData($Data)
|
||
|
{
|
||
|
include("./inc/config_MessegeServer.php");
|
||
|
// Create a UDP socket
|
||
|
$sock = socket_create(AF_INET, SOCK_DGRAM, SOL_UDP);
|
||
|
//send packed
|
||
|
socket_sendto($sock, $Data, 9999, 0x4, SERVER_ADDRESS, SERVER_PORT);
|
||
|
}
|
||
|
|
||
|
function SendMessageJabber($Adresse, $Nachricht)
|
||
|
{
|
||
|
SendData( "#message $Adresse $Nachricht");
|
||
|
}
|
||
|
|
||
|
?>
|