| 49 | |
| 50 | struct SSLSessionID : public TSSslSessionID { |
| 51 | SSLSessionID(const unsigned char *s, size_t l) |
| 52 | { |
| 53 | len = l; |
| 54 | ink_release_assert(l <= sizeof(bytes)); |
| 55 | memcpy(bytes, s, l); |
| 56 | hash(); |
| 57 | } |
| 58 | |
| 59 | SSLSessionID(const SSLSessionID &other) |
| 60 | { |