ObjXMPP  Check-in [e85080a478]

Overview
Comment:Get rid of a warning.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: e85080a4789acd4c20358eb6381ba3447772d9c50636c92d99e2132a09df2e4b
User & Date: js on 2011-12-11 23:40:36
Other Links: manifest | tags
Context
2012-01-01
02:42
Add capability to register callbacks when sending IQs check-in: 9815ad146d user: florob@babelmonkeys.de tags: trunk
2011-12-11
23:40
Get rid of a warning. check-in: e85080a478 user: js tags: trunk
23:39
Eliminate dead code. check-in: b3b3413169 user: js tags: trunk
Changes

Modified src/XMPPConnection.h from [219552acf0] to [75217b7182].

65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
 * \brief A class which abstracts a connection to an XMPP service.
 */
@interface XMPPConnection: OFObject
#ifdef OF_HAVE_OPTONAL_PROTOCOLS
    <OFXMLParserDelegate, OFXMLElementBuilderDelegate>
#endif
{
	SSLSocket *sock;
	OFXMLParser *parser, *oldParser;
	OFXMLElementBuilder *elementBuilder, *oldElementBuilder;
	OFString *username, *password, *server, *resource;
	OFString *domain, *domainToASCII;
	XMPPJID *JID;
	uint16_t port;
	id <XMPPConnectionDelegate, OFObject> delegate;







|







65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
 * \brief A class which abstracts a connection to an XMPP service.
 */
@interface XMPPConnection: OFObject
#ifdef OF_HAVE_OPTONAL_PROTOCOLS
    <OFXMLParserDelegate, OFXMLElementBuilderDelegate>
#endif
{
	id sock;
	OFXMLParser *parser, *oldParser;
	OFXMLElementBuilder *elementBuilder, *oldElementBuilder;
	OFString *username, *password, *server, *resource;
	OFString *domain, *domainToASCII;
	XMPPJID *JID;
	uint16_t port;
	id <XMPPConnectionDelegate, OFObject> delegate;