| 229 | } |
| 230 | |
| 231 | inline void |
| 232 | PoolableSession::attach_hostname(const char *hostname) |
| 233 | { |
| 234 | if (hostname_hash.is_zero()) { |
| 235 | CryptoContext().hash_immediate(hostname_hash, static_cast<const unsigned char *>(static_cast<const void *>(hostname)), |
| 236 | strlen(hostname)); |
| 237 | } |
| 238 | } |
| 239 | |
| 240 | inline bool |
| 241 | PoolableSession::is_multiplexing() const |
no test coverage detected