Add a payload.get_header_length() method, remove header length definitions
This commit is contained in:
@@ -251,6 +251,12 @@ METHOD(payload_t, get_encoding_rules, int,
|
||||
return countof(encodings);
|
||||
}
|
||||
|
||||
METHOD(payload_t, get_header_length, int,
|
||||
private_ike_header_t *this)
|
||||
{
|
||||
return IKE_HEADER_LENGTH;
|
||||
}
|
||||
|
||||
METHOD(payload_t, get_type, payload_type_t,
|
||||
private_ike_header_t *this)
|
||||
{
|
||||
@@ -438,6 +444,7 @@ ike_header_t *ike_header_create()
|
||||
.payload_interface = {
|
||||
.verify = _verify,
|
||||
.get_encoding_rules = _get_encoding_rules,
|
||||
.get_header_length = _get_header_length,
|
||||
.get_length = _get_length,
|
||||
.get_next_type = _get_next_type,
|
||||
.set_next_type = _set_next_type,
|
||||
|
||||
Reference in New Issue
Block a user