| 237 | } |
| 238 | |
| 239 | int |
| 240 | Client::Connection::FD() const |
| 241 | { |
| 242 | int connfd = -1; |
| 243 | |
| 244 | TSAssert(_state->txnp); |
| 245 | TSHttpTxnClientFdGet(_state->txnp, &connfd); |
| 246 | |
| 247 | return connfd; |
| 248 | } |
| 249 | |
| 250 | int |
| 251 | Client::Connection::Count() const |
no test coverage detected