@@ -1,9 +1,10 @@ /* * Copyright (c) 2013, Florian Zeitz + * Copyright (c) 2013, 2016, Jonathan Schleifer * - * https://webkeks.org/git/?p=objxmpp.git + * https://heap.zone/git/?p=objxmpp.git * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice is present in all copies. * @@ -36,11 +37,10 @@ OFSortedList *_identities; OFSortedList *_features; OFMutableDictionary *_childNodes; } -#ifdef OF_HAVE_PROPERTIES /// \brief The JID this node lives on @property (readonly) XMPPJID *JID; /// \brief The node's opaque name of the node @property (readonly) OFString *node; /// \brief The node's human friendly name (may be unspecified) @@ -49,11 +49,10 @@ @property (readonly) OFSortedList *identities; /// \brief The node's list of features @property (readonly) OFSortedList *features; /// \brief The node's children @property (readonly) OFDictionary *childNodes; -#endif /** * \brief Creates a new autoreleased XMPPDiscoNode with the specified * JID and node * @@ -120,16 +119,10 @@ * * \param node The XMPPDiscoNode to add as child */ - (void)addChildNode: (XMPPDiscoNode*)node; -- (XMPPJID*)JID; -- (OFString*)node; -- (OFSortedList*)identities; -- (OFSortedList*)features; -- (OFDictionary*)childNodes; - - (bool)XMPP_handleItemsIQ: (XMPPIQ*)IQ connection: (XMPPConnection*)connection; - (bool)XMPP_handleInfoIQ: (XMPPIQ*)IQ connection: (XMPPConnection*)connection; @end