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.
15 lines
363 B
PHTML
15 lines
363 B
PHTML
14 years ago
|
<?php
|
||
|
function SendData($Data) {
|
||
|
include "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");
|
||
|
}
|
||
|
?>
|