From da97470a1df31bb021ebfe6acc4285049c894058 Mon Sep 17 00:00:00 2001 From: Jonathan Schleifer Date: Fri, 3 Feb 2012 10:46:42 +0100 Subject: [PATCH] Add \cond internal for private methods. --- src/XMPPConnection.h | 2 ++ src/XMPPRoster.h | 2 ++ src/XMPPSCRAMAuth.h | 2 ++ src/XMPPSRVLookup.h | 2 ++ 4 files changed, 8 insertions(+) diff --git a/src/XMPPConnection.h b/src/XMPPConnection.h index a47c2f8..87cb0ed 100644 --- a/src/XMPPConnection.h +++ b/src/XMPPConnection.h @@ -286,6 +286,7 @@ - (void)setPort: (uint16_t)port; - (uint16_t)port; +/// \cond internal - (void)XMPP_startStream; - (void)XMPP_handleStream: (OFXMLElement*)element; - (void)XMPP_handleTLS: (OFXMLElement*)element; @@ -304,6 +305,7 @@ - (void)XMPP_handleSession: (XMPPIQ*)iq; - (OFString*)XMPP_IDNAToASCII: (OFString*)domain; - (XMPPMulticastDelegate*)XMPP_delegates; +/// \endcond @end @interface OFObject (XMPPConnectionDelegate) diff --git a/src/XMPPRoster.h b/src/XMPPRoster.h index 8d2eb0d..b7ed9db 100644 --- a/src/XMPPRoster.h +++ b/src/XMPPRoster.h @@ -128,11 +128,13 @@ */ - (void)removeDelegate: (id )delegate; +/// \cond internal - (void)XMPP_addRosterItem: (XMPPRosterItem*)rosterItem; - (void)XMPP_updateRosterItem: (XMPPRosterItem*)rosterItem; - (void)XMPP_deleteRosterItem: (XMPPRosterItem*)rosterItem; - (void)XMPP_handleInitialRoster: (XMPPIQ*)iq; - (XMPPRosterItem*)XMPP_rosterItemWithXMLElement: (OFXMLElement*)element; +/// \endcond @end @interface OFObject (XMPPRosterDelegate) diff --git a/src/XMPPSCRAMAuth.h b/src/XMPPSCRAMAuth.h index c6f355e..0eb1326 100644 --- a/src/XMPPSCRAMAuth.h +++ b/src/XMPPSCRAMAuth.h @@ -109,6 +109,7 @@ hash: (Class)hash plusAvailable: (BOOL)plusAvailable; +/// \cond internal - (OFString*)XMPP_genNonce; - (uint8_t*)XMPP_HMACWithKey: (OFDataArray*)key data: (OFDataArray*)data; @@ -117,4 +118,5 @@ iterationCount: (intmax_t)i; - (OFDataArray*)XMPP_parseServerFirstMessage: (OFDataArray*)data; - (OFDataArray*)XMPP_parseServerFinalMessage: (OFDataArray*)data; +/// \endcond @end diff --git a/src/XMPPSRVLookup.h b/src/XMPPSRVLookup.h index 566aced..426bd05 100644 --- a/src/XMPPSRVLookup.h +++ b/src/XMPPSRVLookup.h @@ -76,8 +76,10 @@ + lookupWithDomain: (OFString*)domain; - initWithDomain: (OFString*)domain; +/// \cond internal - (void)XMPP_lookup; - (void)XMPP_addEntry: (XMPPSRVEntry*)item; +/// \endcond @end @interface XMPPSRVEnumerator: OFEnumerator