From f0cc063c161f93daf5dd1313f4efc32709e025c7 Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Tue, 24 Jul 2018 22:05:35 +0200 Subject: [PATCH] Add remaining protocols from spec --- nodeinfo.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/nodeinfo.go b/nodeinfo.go index 4773ec8..548b1c6 100644 --- a/nodeinfo.go +++ b/nodeinfo.go @@ -8,7 +8,15 @@ type ( const ( // Protocols that can be supported by this node. ProtocolActivityPub NodeProtocol = "activitypub" + ProtocolBuddyCloud = "buddycloud" + ProtocolDFRN = "dfrn" + ProtocolDisaspora = "diaspora" + ProtocolLibertree = "libertree" ProtocolOStatus = "ostatus" + ProtocolPumpIO = "pumpio" + ProtocolTent = "tent" + ProtocolXMPP = "xmpp" + ProtocolZot = "zot" // Services that can be supported (inbound or outbound) by this node's API. ServiceTwitter NodeService = "twitter"