现在的位置: 首页 > 综合 > 正文

xmpp 压缩流

2013年12月02日 ⁄ 综合 ⁄ 共 386字 ⁄ 字号 评论关闭

转:http://www.jabbercn.org/XEP-0138

NSXMLElement *compress = [NSXMLElement elementWithName:@"compress"];
    [compress addAttributeWithName:@"xmlns" stringValue:@"http://jabber.org/protocol/compress"];
    NSXMLElement *method = [NSXMLElement elementWithName:@"method"];
    [method setStringValue:@"zlib"];
    [compress addChild:method];
    
    NSLog(@"%@",[compress XMLString]);
    [xmppStream sendElement:compress];

抱歉!评论已关闭.