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:20 PM
#21
Archived author: Fabian • Posted: 2021-02-26T14:20:52.191000+00:00
Original source

1119 uses fully proto as bnet protocol. The other connections is just http(s) without proto
rektbyfaith
02-26-2021, 02:20 PM #21

Archived author: Fabian • Posted: 2021-02-26T14:20:52.191000+00:00
Original source

1119 uses fully proto as bnet protocol. The other connections is just http(s) without proto

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

or am i remembering that wrong
rektbyfaith
02-26-2021, 02:20 PM #22

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

or am i remembering that wrong

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

E.g the new protocol <@!209317995057643521>
rektbyfaith
02-26-2021, 02:20 PM #23

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

E.g the new protocol <@!209317995057643521>

rektbyfaith
Administrator
0
02-26-2021, 02:21 PM
#24
Archived author: Fabian • Posted: 2021-02-26T14:21:01.314000+00:00
Original source

For Authentication
rektbyfaith
02-26-2021, 02:21 PM #24

Archived author: Fabian • Posted: 2021-02-26T14:21:01.314000+00:00
Original source

For Authentication

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

gotcha.
rektbyfaith
02-26-2021, 02:21 PM #25

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

gotcha.

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

what is the difference between 1119 and 8081?
rektbyfaith
02-26-2021, 02:26 PM #26

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

what is the difference between 1119 and 8081?

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

1119 is for bnet, 8081 is for worldserver.
rektbyfaith
02-26-2021, 02:26 PM #27

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

1119 is for bnet, 8081 is for worldserver.

rektbyfaith
Administrator
0
02-26-2021, 02:31 PM
#28
Archived author: JORGIE • Posted: 2021-02-26T14:31:08.646000+00:00
Original source

LoginRESTService use the 8081 port
rektbyfaith
02-26-2021, 02:31 PM #28

Archived author: JORGIE • Posted: 2021-02-26T14:31:08.646000+00:00
Original source

LoginRESTService use the 8081 port

rektbyfaith
Administrator
0
02-26-2021, 02:31 PM
#29
Archived author: JORGIE • Posted: 2021-02-26T14:31:15.919000+00:00
Original source

bool LoginRESTService::Start(Trinity::Asio::IoContext* ioContext)
{
_ioContext = ioContext;
_bindIP = sConfigMgr->GetStringDefault("BindIP", "0.0.0.0");
_port = sConfigMgr->GetIntDefault("LoginREST.Port", 8081);
rektbyfaith
02-26-2021, 02:31 PM #29

Archived author: JORGIE • Posted: 2021-02-26T14:31:15.919000+00:00
Original source

bool LoginRESTService::Start(Trinity::Asio::IoContext* ioContext)
{
_ioContext = ioContext;
_bindIP = sConfigMgr->GetStringDefault("BindIP", "0.0.0.0");
_port = sConfigMgr->GetIntDefault("LoginREST.Port", 8081);

rektbyfaith
Administrator
0
02-26-2021, 02:31 PM
#30
Archived author: JORGIE • Posted: 2021-02-26T14:31:53.597000+00:00
Original source

void LoginRESTService::Run()
{
soap soapServer(SOAP_C_UTFSTRING, SOAP_C_UTFSTRING);

// check every 3 seconds if world ended
soapServer.accept_timeout = 3;
soapServer.recv_timeout = 5;
soapServer.send_timeout = 5;
if (!soap_valid_socket(soap_bind(&soapServer, _bindIP.c_str(), _port, 100)))
{
TC_LOG_ERROR("server.rest", "Couldn't bind to %s:%d", _bindIP.c_str(), _port);
return;
}
rektbyfaith
02-26-2021, 02:31 PM #30

Archived author: JORGIE • Posted: 2021-02-26T14:31:53.597000+00:00
Original source

void LoginRESTService::Run()
{
soap soapServer(SOAP_C_UTFSTRING, SOAP_C_UTFSTRING);

// check every 3 seconds if world ended
soapServer.accept_timeout = 3;
soapServer.recv_timeout = 5;
soapServer.send_timeout = 5;
if (!soap_valid_socket(soap_bind(&soapServer, _bindIP.c_str(), _port, 100)))
{
TC_LOG_ERROR("server.rest", "Couldn't bind to %s:%d", _bindIP.c_str(), _port);
return;
}

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