Changeset 769 for trunk/src/network/ssl/qsslsocket.cpp
- Timestamp:
- Aug 2, 2010, 9:27:30 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.6.3 (added) merged: 768 /branches/vendor/nokia/qt/current merged: 767 /branches/vendor/nokia/qt/4.6.2 removed
- Property svn:mergeinfo changed
-
trunk/src/network/ssl/qsslsocket.cpp
r651 r769 157 157 will get emitted as soon as data has been written to the TCP socket. 158 158 159 \section1 Symbian Platform Security Requirements 160 161 On Symbian, processes which use this class must have the 162 \c NetworkServices platform security capability. If the client 163 process lacks this capability, operations will fail. 164 165 Platform security capabilities are added via the 166 \l{qmake-variable-reference.html#target-capability}{TARGET.CAPABILITY} 167 qmake variable. 168 159 169 \sa QSslCertificate, QSslCipher, QSslError 160 170 */ … … 1110 1120 Q_D(QSslSocket); 1111 1121 d->configuration.ciphers.clear(); 1112 foreach ( QStringcipherName, ciphers.split(QLatin1String(":"),QString::SkipEmptyParts)) {1122 foreach (const QString &cipherName, ciphers.split(QLatin1String(":"),QString::SkipEmptyParts)) { 1113 1123 for (int i = 0; i < 3; ++i) { 1114 1124 // ### Crude
Note:
See TracChangeset
for help on using the changeset viewer.