[DiscordArchive] ?what is the different bettween 1119 and 8081? is the 1119 use the TCP
[DiscordArchive] ?what is the different bettween 1119 and 8081? is the 1119 use the TCP
Archived author: JORGIE • Posted: 2021-02-26T14:10:21.208000+00:00
Original source
Yes, but the 8081 use the http?
Archived author: M'Dic • Posted: 2021-02-26T14:12:05.068000+00:00
Original source
https://tenor.com/view/renegade-for-life...f-11385244
Archived author: MaxtorCoder • Posted: 2021-02-26T14:12:50.434000+00:00
Original source
No it is not.
Archived author: MaxtorCoder • Posted: 2021-02-26T14:13:21.129000+00:00
Original source
1119 has HTTP stuff if I recall correctly.
Archived author: JORGIE • Posted: 2021-02-26T14:16:50.912000+00:00
Original source
void Battlenet::Session::SendResponse(uint32 token, pb::Message const* response)
{
Header header;
header.set_token(token);
header.set_service_id(0xFE);
header.set_size(response->ByteSize());
uint16 headerSize = header.ByteSize();
EndianConvertReverse(headerSize);
MessageBuffer packet(sizeof(headerSize) + header.GetCachedSize() + response->GetCachedSize());
packet.Write(&headerSize, sizeof(headerSize));
uint8* ptr = packet.GetWritePointer();
packet.WriteCompleted(header.GetCachedSize());
header.SerializePartialToArray(ptr, header.GetCachedSize());
ptr = packet.GetWritePointer();
packet.WriteCompleted(response->GetCachedSize());
response->SerializeToArray(ptr, response->GetCachedSize());
AsyncWrite(&packet);
}
Archived author: JORGIE • Posted: 2021-02-26T14:17:52.355000+00:00
Original source
this is not http proto
Archived author: JORGIE • Posted: 2021-02-26T14:20:20.404000+00:00
Original source
<@!376821416105869315> I want to rewrite the benetserver with java. There are same docs to understand the communication?
Archived author: MaxtorCoder • Posted: 2021-02-26T14:20:32.408000+00:00
Original source
Java <:KEKW:812260190362533889>
Archived author: M'Dic • Posted: 2021-02-26T14:20:43.631000+00:00
Original source
wasn there a java project for wotlk at one time
Archived author: MaxtorCoder • Posted: 2021-02-26T14:20:49.256000+00:00
Original source
It's not for master.