streams/Zotlabs/Zot/ZotHandler.php

36 lines
553 B
PHP
Raw Normal View History

2015-12-08 00:01:54 +00:00
<?php
namespace Zotlabs\Zot;
class ZotHandler implements IHandler {
function Ping() {
zot_reply_ping();
}
function Pickup($data) {
zot_reply_pickup($data);
}
function Notify($data) {
zot_reply_notify($data);
}
function Request($data) {
2015-12-08 00:06:43 +00:00
zot_reply_message_request($data);
2015-12-08 00:01:54 +00:00
}
function AuthCheck($data,$encrypted) {
zot_reply_auth_check($data,$encrypted);
}
function Purge($sender,$recipients) {
zot_reply_purge($sender,$recipients);
}
function Refresh($sender,$recipients) {
zot_reply_refresh($sender,$recipients);
}
}