| 206 | } |
| 207 | |
| 208 | static inline void connMarshalThread(connection *conn) { |
| 209 | if (conn->type->marshal_thread != nullptr) |
| 210 | conn->type->marshal_thread(conn); |
| 211 | } |
| 212 | |
| 213 | /* Return CONN_TYPE_* for the specified connection */ |
| 214 | static inline int connGetType(connection *conn) { |
no outgoing calls
no test coverage detected