diff options
author | Evgeniy Khramtsov <ekhramtsov@process-one.net> | 2016-11-19 13:03:33 +0300 |
---|---|---|
committer | Evgeniy Khramtsov <ekhramtsov@process-one.net> | 2016-11-19 13:03:33 +0300 |
commit | 9aff7e52a8ddf9ecb6637a629899ecf0b10e8825 (patch) | |
tree | bf1adfbe0a64ece6fc0c79107eaf9bc3cfaca107 /include/xmpp.hrl | |
parent | Fix includes in eunit compilation flags (diff) |
Switch to stand-alone XMPP library
Diffstat (limited to 'include/xmpp.hrl')
-rw-r--r-- | include/xmpp.hrl | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/include/xmpp.hrl b/include/xmpp.hrl deleted file mode 100644 index f8a61590f..000000000 --- a/include/xmpp.hrl +++ /dev/null @@ -1,25 +0,0 @@ -%%%------------------------------------------------------------------- -%%% @author Evgeny Khramtsov <ekhramtsov@process-one.net> -%%% @copyright (C) 2015, Evgeny Khramtsov -%%% @doc -%%% -%%% @end -%%% Created : 10 Dec 2015 by Evgeny Khramtsov <ekhramtsov@process-one.net> -%%%------------------------------------------------------------------- --include("ns.hrl"). --include("jid.hrl"). --include("xmpp_codec.hrl"). --include("fxml.hrl"). - --type iq_type() :: get | set | result | error. --type message_type() :: chat | error | groupchat | headline | normal. --type presence_type() :: available | error | probe | subscribe | - subscribed | unavailable | unsubscribe | - unsubscribed. - --type stanza() :: iq() | presence() | message(). - --define(is_stanza(Pkt), - (is_record(Pkt, iq) or - is_record(Pkt, message) or - is_record(Pkt, presence))). |