~ubuntu-branches/ubuntu/quantal/kdegames/quantal

« back to all changes in this revision

Viewing changes to ksirk/ksirk/iris/src/xmpp/xmpp-core/securestream.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-15 14:17:50 UTC
  • mfrom: (1.3.14)
  • Revision ID: package-import@ubuntu.com-20111215141750-6tj6brf4azhrt915
Tags: 4:4.7.90-0ubuntu1
new upstream beta release

Show diffs side-by-side

added added

removed removed

Lines of Context:
170
170
                connect(p.tlsHandler, SIGNAL(success()), SLOT(tlsHandler_success()));
171
171
                connect(p.tlsHandler, SIGNAL(fail()), SLOT(tlsHandler_fail()));
172
172
                connect(p.tlsHandler, SIGNAL(closed()), SLOT(tlsHandler_closed()));
173
 
                connect(p.tlsHandler, SIGNAL(readyRead(const QByteArray &)), SLOT(tlsHandler_readyRead(const QByteArray &)));
174
 
                connect(p.tlsHandler, SIGNAL(readyReadOutgoing(const QByteArray &, int)), SLOT(tlsHandler_readyReadOutgoing(const QByteArray &, int)));
 
173
                connect(p.tlsHandler, SIGNAL(readyRead(QByteArray)), SLOT(tlsHandler_readyRead(QByteArray)));
 
174
                connect(p.tlsHandler, SIGNAL(readyReadOutgoing(QByteArray,int)), SLOT(tlsHandler_readyReadOutgoing(QByteArray,int)));
175
175
        }
176
176
#endif
177
177
 
406
406
void SecureStream::linkLayer(QObject *s)
407
407
{
408
408
        connect(s, SIGNAL(tlsHandshaken()), SLOT(layer_tlsHandshaken()));
409
 
        connect(s, SIGNAL(tlsClosed(const QByteArray &)), SLOT(layer_tlsClosed(const QByteArray &)));
410
 
        connect(s, SIGNAL(readyRead(const QByteArray &)), SLOT(layer_readyRead(const QByteArray &)));
411
 
        connect(s, SIGNAL(needWrite(const QByteArray &)), SLOT(layer_needWrite(const QByteArray &)));
 
409
        connect(s, SIGNAL(tlsClosed(QByteArray)), SLOT(layer_tlsClosed(QByteArray)));
 
410
        connect(s, SIGNAL(readyRead(QByteArray)), SLOT(layer_readyRead(QByteArray)));
 
411
        connect(s, SIGNAL(needWrite(QByteArray)), SLOT(layer_needWrite(QByteArray)));
412
412
        connect(s, SIGNAL(error(int)), SLOT(layer_error(int)));
413
413
}
414
414