mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +00:00
Fix build fail
This commit is contained in:
parent
98ccea8cd3
commit
2d4a4b1d2b
1 changed files with 1 additions and 1 deletions
|
@ -326,7 +326,7 @@ srs_error_t SrsRtcServer::on_udp_packet(SrsUdpMuxSocket* skt)
|
||||||
// Notify hijack to handle the UDP packet.
|
// Notify hijack to handle the UDP packet.
|
||||||
if (hijacker) {
|
if (hijacker) {
|
||||||
bool consumed = false;
|
bool consumed = false;
|
||||||
if ((err = hijacker->on_udp_packet(pkt, session, &consumed)) != srs_success) {
|
if ((err = hijacker->on_udp_packet(skt, session, &consumed)) != srs_success) {
|
||||||
return srs_error_wrap(err, "hijack consumed=%u", consumed);
|
return srs_error_wrap(err, "hijack consumed=%u", consumed);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue