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