blob: 2ccb1ad793fa70b20e29198f56ed3e506c74e8e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
/*
* Alert Message
* (C) 2004-2006,2011 Jack Lloyd
*
* Released under the terms of the Botan license
*/
#ifndef BOTAN_TLS_ALERT_H__
#define BOTAN_TLS_ALERT_H__
#include <botan/tls_exceptn.h>
namespace Botan {
namespace TLS {
/**
* SSL/TLS Alert Message
*/
class Alert
{
public:
/**
* @return if this alert is a fatal one or not
*/
bool is_fatal() const { return fatal; }
/**
* @return type of alert
*/
Alert_Type type() const { return type_code; }
/**
* Deserialize an Alert message
* @param buf the serialized alert
*/
Alert(const MemoryRegion<byte>& buf)
{
if(buf.size() != 2)
throw Decoding_Error("Alert: Bad size " + to_string(buf.size()) +
" for alert message");
if(buf[0] == 1) fatal = false;
else if(buf[0] == 2) fatal = true;
else
throw Decoding_Error("Alert: Bad code for alert level");
const byte dc = buf[1];
if(dc == 255)
throw Decoding_Error("Alert: description code 255, rejecting");
type_code = static_cast<Alert_Type>(dc);
}
private:
bool fatal;
Alert_Type type_code;
};
}
}
#endif
|