mirror of https://github.com/SeanOMik/libki.git
protocol: Don't handle application messages before CLIENT_HELLO
This commit is contained in:
parent
1755bda42e
commit
e89cdd2ae4
|
@ -101,8 +101,10 @@ namespace net
|
||||||
// whether this is a control packet or not
|
// whether this is a control packet or not
|
||||||
if (header.is_control())
|
if (header.is_control())
|
||||||
on_control_message(header);
|
on_control_message(header);
|
||||||
else
|
else if (m_established)
|
||||||
on_application_message(header);
|
on_application_message(header);
|
||||||
|
else
|
||||||
|
close();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Session::on_control_message(const PacketHeader& header)
|
void Session::on_control_message(const PacketHeader& header)
|
||||||
|
|
Loading…
Reference in New Issue