mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-22 02:34:26 +08:00
Optimaztion code for srt (#3934)
Some checks are pending
Android / build (push) Waiting to run
CodeQL / Analyze (cpp) (push) Waiting to run
CodeQL / Analyze (javascript) (push) Waiting to run
Docker / build (push) Waiting to run
Linux / build (push) Waiting to run
macOS / build (push) Waiting to run
Windows / build (push) Waiting to run
Some checks are pending
Android / build (push) Waiting to run
CodeQL / Analyze (cpp) (push) Waiting to run
CodeQL / Analyze (javascript) (push) Waiting to run
Docker / build (push) Waiting to run
Linux / build (push) Waiting to run
macOS / build (push) Waiting to run
Windows / build (push) Waiting to run
This commit is contained in:
parent
de7afaf992
commit
87277ac91a
@ -292,8 +292,8 @@ bool HandshakePacket::loadFromData(uint8_t *buf, size_t len) {
|
|||||||
syn_cookie = loadUint32(ptr);
|
syn_cookie = loadUint32(ptr);
|
||||||
ptr += 4;
|
ptr += 4;
|
||||||
|
|
||||||
memcpy(peer_ip_addr, ptr, sizeof(peer_ip_addr) * sizeof(peer_ip_addr[0]));
|
memcpy(peer_ip_addr, ptr, sizeof(peer_ip_addr));
|
||||||
ptr += sizeof(peer_ip_addr) * sizeof(peer_ip_addr[0]);
|
ptr += sizeof(peer_ip_addr);
|
||||||
|
|
||||||
if (encryption_field != NO_ENCRYPTION) {
|
if (encryption_field != NO_ENCRYPTION) {
|
||||||
ErrorL << "not support encryption " << encryption_field;
|
ErrorL << "not support encryption " << encryption_field;
|
||||||
@ -400,8 +400,8 @@ bool HandshakePacket::storeToData() {
|
|||||||
storeUint32(ptr, syn_cookie);
|
storeUint32(ptr, syn_cookie);
|
||||||
ptr += 4;
|
ptr += 4;
|
||||||
|
|
||||||
memcpy(ptr, peer_ip_addr, sizeof(peer_ip_addr) * sizeof(peer_ip_addr[0]));
|
memcpy(ptr, peer_ip_addr, sizeof(peer_ip_addr));
|
||||||
ptr += sizeof(peer_ip_addr) * sizeof(peer_ip_addr[0]);
|
ptr += sizeof(peer_ip_addr);
|
||||||
|
|
||||||
if (encryption_field != NO_ENCRYPTION) {
|
if (encryption_field != NO_ENCRYPTION) {
|
||||||
ErrorL << "not support encryption " << encryption_field;
|
ErrorL << "not support encryption " << encryption_field;
|
||||||
@ -433,7 +433,7 @@ uint32_t HandshakePacket::getSynCookie(uint8_t *buf, size_t len) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void HandshakePacket::assignPeerIP(struct sockaddr_storage *addr) {
|
void HandshakePacket::assignPeerIP(struct sockaddr_storage *addr) {
|
||||||
memset(peer_ip_addr, 0, sizeof(peer_ip_addr) * sizeof(peer_ip_addr[0]));
|
memset(peer_ip_addr, 0, sizeof(peer_ip_addr));
|
||||||
if (addr->ss_family == AF_INET) {
|
if (addr->ss_family == AF_INET) {
|
||||||
struct sockaddr_in *ipv4 = (struct sockaddr_in *)addr;
|
struct sockaddr_in *ipv4 = (struct sockaddr_in *)addr;
|
||||||
// 抓包 奇怪好像是小头端??? [AUTO-TRANSLATED:40eb164c]
|
// 抓包 奇怪好像是小头端??? [AUTO-TRANSLATED:40eb164c]
|
||||||
@ -446,7 +446,7 @@ void HandshakePacket::assignPeerIP(struct sockaddr_storage *addr) {
|
|||||||
storeUint32LE(peer_ip_addr, addr4.s_addr);
|
storeUint32LE(peer_ip_addr, addr4.s_addr);
|
||||||
} else {
|
} else {
|
||||||
const sockaddr_in6 *ipv6 = (struct sockaddr_in6 *)addr;
|
const sockaddr_in6 *ipv6 = (struct sockaddr_in6 *)addr;
|
||||||
memcpy(peer_ip_addr, ipv6->sin6_addr.s6_addr, sizeof(peer_ip_addr) * sizeof(peer_ip_addr[0]));
|
memcpy(peer_ip_addr, ipv6->sin6_addr.s6_addr, sizeof(peer_ip_addr));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -206,7 +206,7 @@ void SrtTransport::handleHandshakeInduction(HandshakePacket &pkt, struct sockadd
|
|||||||
res->srt_socket_id = _peer_socket_id;
|
res->srt_socket_id = _peer_socket_id;
|
||||||
res->syn_cookie = HandshakePacket::generateSynCookie(addr, _start_timestamp);
|
res->syn_cookie = HandshakePacket::generateSynCookie(addr, _start_timestamp);
|
||||||
_sync_cookie = res->syn_cookie;
|
_sync_cookie = res->syn_cookie;
|
||||||
memcpy(res->peer_ip_addr, pkt.peer_ip_addr, sizeof(pkt.peer_ip_addr) * sizeof(pkt.peer_ip_addr[0]));
|
memcpy(res->peer_ip_addr, pkt.peer_ip_addr, sizeof(pkt.peer_ip_addr));
|
||||||
_handleshake_res = res;
|
_handleshake_res = res;
|
||||||
res->storeToData();
|
res->storeToData();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user