| 53 | } |
| 54 | |
| 55 | bool HttpSession::setAttribute(const char* name, const char* value) |
| 56 | { |
| 57 | return setAttribute(name, value, strlen(value)); |
| 58 | } |
| 59 | |
| 60 | bool HttpSession::setAttribute(const char* name, const void* value, size_t len) |
| 61 | { |
no test coverage detected