Skip to content

Commit

Permalink
Merge branch 'develop' into feature/multiplayer
Browse files Browse the repository at this point in the history
  • Loading branch information
alborrajo authored Apr 27, 2022
2 parents 8ac9a93 + 629ee26 commit 5fe448b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions Arrowgene.Ddon.Server/ServerLogger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,10 @@ public void LogPacketError<TClient>(TClient client, IPacket packet) where TClien

public void LogUnhandledPacket<TClient>(TClient client, IPacket packet) where TClient : Client
{
if (!_setting.LogUnknownPackets)
{
return;
}
Write(LogLevel.Error,
$"UNHANDLED PACKET:{Environment.NewLine}{client.Identity}{Environment.NewLine}{packet}", packet);
}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ ensure that no other local services listen on these ports.

# Client
Launch the client with the following args:
`"DDO.exe" "addr=localhost port=52100 token=00000000000000000000 DL=http://127.0.0.1/win/ LVer=03.04.003.20181115.0 RVer=3040008"`
`"DDO.exe" "addr=localhost port=52100 token=00000000000000000000 DL=http://127.0.0.1:52099/win/ LVer=03.04.003.20181115.0 RVer=3040008"`

#Development
# Development
## Project
### Cli
Entrypoint to the application, allows to start different components via parameters
Expand Down
10 changes: 5 additions & 5 deletions deploy/Arrowgene.Ddon.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,21 +29,21 @@
"Identity": "",
"MaxConnections": 100,
"NumSimultaneouslyWriteOperations": 100,
"BufferSize": 2000,
"BufferSize": 2048,
"Retries": 10,
"MaxUnitOfOrder": 1,
"MaxUnitOfOrder": 8,
"MaxSimultaneousSendsPerClient": 1,
"SocketTimeoutSeconds": -1,
"SocketSettings": {
"Backlog": 5,
"DontFragment": true,
"DualMode": false,
"ExclusiveAddressUse": false,
"NoDelay": false,
"NoDelay": true,
"UseOnlyOverlappedIo": false,
"ReceiveBufferSize": 8192,
"ReceiveBufferSize": 2048,
"ReceiveTimeout": 0,
"SendBufferSize": 8192,
"SendBufferSize": 2048,
"SendTimeout": 0,
"Ttl": 32,
"LingerEnabled": false,
Expand Down

0 comments on commit 5fe448b

Please sign in to comment.