Skip to content

strophe/strophejs-plugin-ping

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Strophe.ping.js

Strophe.ping.js is a plugin to provide XMPP Ping ( XEP-0199 ).

Usage

After you connected sucessfully to the XMPP server you can send a ping to a XMPP client or server:

connection.ping.ping( "serviceJID@server.org", success, error, timeout );

You can also add a ping handler to receive pings:

connection.ping.addPingHandler( handler );

Within your ping handler function you surely want to reply with a pong iq:

handler = function( ping ){
  ...
  connection.ping.pong( ping );
  ...
  return true;
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published