aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Zot/ZotHandler.php
blob: f9bb05410156bf307c364a3b04b1732c01f91aef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php

namespace Zotlabs\Zot;

require_once('Zotlabs/Zot/IHandler.php');


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) {
		zot_reply_message_request($data);
	}

	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);
	}

}