. */ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } /** * Queue handler for pushing new notices to ping servers. */ class PingQueueHandler extends QueueHandler { function transport() { return 'ping'; } function handle($notice) { require_once INSTALLDIR . '/lib/ping.php'; return ping_broadcast_notice($notice); } }