Don't reject OPAQUE ports while verifying traffic selector substructure
This commit is contained in:
@@ -113,9 +113,13 @@ METHOD(payload_t, verify, status_t,
|
||||
private_traffic_selector_substructure_t *this)
|
||||
{
|
||||
if (this->start_port > this->end_port)
|
||||
{
|
||||
/* OPAQUE ports are the only exception */
|
||||
if (this->start_port != 0xffff && this->end_port != 0)
|
||||
{
|
||||
return FAILED;
|
||||
}
|
||||
}
|
||||
switch (this->ts_type)
|
||||
{
|
||||
case TS_IPV4_ADDR_RANGE:
|
||||
|
||||
Reference in New Issue
Block a user