| 42 | } |
| 43 | |
| 44 | void redis_request::put(const char* data, size_t dlen) |
| 45 | { |
| 46 | #ifdef MINGW |
| 47 | iov_[argc_].iov_base = (char*) data; |
| 48 | #else |
| 49 | iov_[argc_].iov_base = (void*) data; |
| 50 | #endif |
| 51 | iov_[argc_].iov_len = dlen; |
| 52 | argc_++; |
| 53 | } |
| 54 | |
| 55 | } // namespace acl |
| 56 |
no outgoing calls
no test coverage detected