creates a new QHttpConnection based on arguments. */
| 50 | |
| 51 | /** creates a new QHttpConnection based on arguments. */ |
| 52 | static |
| 53 | QHttpConnection* create(qintptr sokDescriptor, TBackend backendType, QObject* parent) { |
| 54 | QHttpConnection* conn = new QHttpConnection(parent); |
| 55 | conn->setSocketDescriptor(sokDescriptor, backendType); |
| 56 | return conn; |
| 57 | } |
| 58 | |
| 59 | signals: |
| 60 | /** emitted when a pair of HTTP request and response are ready to interact. |
nothing calls this directly
no test coverage detected