switched to loglevel constants in examples.
git-svn-id: svn://netflint.net/xmpphp@26 ef36c318-a008-4979-b6e8-6b496270793b
This commit is contained in:
parent
6a45a12535
commit
c395c7115b
@ -4,7 +4,7 @@
|
||||
error_reporting(E_ALL & E_STRICT);
|
||||
|
||||
include("xmpp.php");
|
||||
$conn = new XMPP('talk.google.com', 5222, 'user', 'password', 'xmpphp', 'gmail.com', $printlog=True, $loglevel=LOGGING_INFO);
|
||||
$conn = new XMPP('talk.google.com', 5222, 'user', 'password', 'xmpphp', 'gmail.com', $printlog=True, $loglevel=Logging::LOG_INFO);
|
||||
$conn->connect();
|
||||
while(!$conn->disconnected) {
|
||||
$payloads = $conn->processUntil(array('message', 'presence', 'end_stream', 'session_start'));
|
||||
|
@ -4,7 +4,7 @@
|
||||
error_reporting(E_ALL & E_STRICT);
|
||||
|
||||
include("xmpp.php");
|
||||
$conn = new XMPP('talk.google.com', 5222, 'username', 'password', 'xmpphp', 'gmail.com', $printlog=False, $loglevel=LOGGING_INFO);
|
||||
$conn = new XMPP('talk.google.com', 5222, 'username', 'password', 'xmpphp', 'gmail.com', $printlog=False, $loglevel=Logging::LOG_INFO);
|
||||
$conn->connect();
|
||||
$conn->processUntil('session_start');
|
||||
$conn->message('someguy@someserver.net', 'This is a test message!');
|
||||
|
Loading…
Reference in New Issue
Block a user