Forums WoW Modding Support Archives TrinityCore Discord Archives [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

[DiscordArchive] ?what is the different bettween 1119 and 8081? is the 1119 use the TCP

Pages (6): Previous 1 2 3 4 5 6 Next
rektbyfaith
Administrator
0
02-26-2021, 02:10 PM
#11
Archived author: JORGIE • Posted: 2021-02-26T14:10:21.208000+00:00
Original source

Yes, but the 8081 use the http?
rektbyfaith
02-26-2021, 02:10 PM #11

Archived author: JORGIE • Posted: 2021-02-26T14:10:21.208000+00:00
Original source

Yes, but the 8081 use the http?

rektbyfaith
Administrator
0
02-26-2021, 02:12 PM
#12
Archived author: M'Dic • Posted: 2021-02-26T14:12:05.068000+00:00
Original source

https://tenor.com/view/renegade-for-life...f-11385244
rektbyfaith
02-26-2021, 02:12 PM #12

Archived author: M'Dic • Posted: 2021-02-26T14:12:05.068000+00:00
Original source

https://tenor.com/view/renegade-for-life...f-11385244

rektbyfaith
Administrator
0
02-26-2021, 02:12 PM
#13
Archived author: MaxtorCoder • Posted: 2021-02-26T14:12:50.434000+00:00
Original source

No it is not.
rektbyfaith
02-26-2021, 02:12 PM #13

Archived author: MaxtorCoder • Posted: 2021-02-26T14:12:50.434000+00:00
Original source

No it is not.

rektbyfaith
Administrator
0
02-26-2021, 02:13 PM
#14
Archived author: MaxtorCoder • Posted: 2021-02-26T14:13:21.129000+00:00
Original source

1119 has HTTP stuff if I recall correctly.
rektbyfaith
02-26-2021, 02:13 PM #14

Archived author: MaxtorCoder • Posted: 2021-02-26T14:13:21.129000+00:00
Original source

1119 has HTTP stuff if I recall correctly.

rektbyfaith
Administrator
0
02-26-2021, 02:16 PM
#15
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);
}
rektbyfaith
02-26-2021, 02:16 PM #15

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);
}

rektbyfaith
Administrator
0
02-26-2021, 02:17 PM
#16
Archived author: JORGIE • Posted: 2021-02-26T14:17:52.355000+00:00
Original source

this is not http proto
rektbyfaith
02-26-2021, 02:17 PM #16

Archived author: JORGIE • Posted: 2021-02-26T14:17:52.355000+00:00
Original source

this is not http proto

rektbyfaith
Administrator
0
02-26-2021, 02:20 PM
#17
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?
rektbyfaith
02-26-2021, 02:20 PM #17

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?

rektbyfaith
Administrator
0
02-26-2021, 02:20 PM
#18
Archived author: MaxtorCoder • Posted: 2021-02-26T14:20:32.408000+00:00
Original source

Java <:KEKW:812260190362533889>
rektbyfaith
02-26-2021, 02:20 PM #18

Archived author: MaxtorCoder • Posted: 2021-02-26T14:20:32.408000+00:00
Original source

Java <:KEKW:812260190362533889>

rektbyfaith
Administrator
0
02-26-2021, 02:20 PM
#19
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
rektbyfaith
02-26-2021, 02:20 PM #19

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

rektbyfaith
Administrator
0
02-26-2021, 02:20 PM
#20
Archived author: MaxtorCoder • Posted: 2021-02-26T14:20:49.256000+00:00
Original source

It's not for master.
rektbyfaith
02-26-2021, 02:20 PM #20

Archived author: MaxtorCoder • Posted: 2021-02-26T14:20:49.256000+00:00
Original source

It's not for master.

Pages (6): Previous 1 2 3 4 5 6 Next
Recently Browsing
 1 Guest(s)
Recently Browsing
 1 Guest(s)