mirror of
https://github.com/sochix/TLSharp.git
synced 2026-04-05 06:26:44 +00:00
- removed non-generic TLVector
- write length of Vector during Serialization
This commit is contained in:
parent
f40034ad09
commit
7fd0413c7e
4 changed files with 4 additions and 42 deletions
|
|
@ -336,9 +336,9 @@ namespace TLSharp.Core.Network
|
|||
switch (errorCode)
|
||||
{
|
||||
case 16:
|
||||
throw new InvalidOperationException(" msg_id too low (most likely, client time is wrong; it would be worthwhile to synchronize it using msg_id notifications and re-send the original message with the “correct” msg_id or wrap it in a container with a new msg_id if the original message had waited too long on the client to be transmitted)");
|
||||
throw new InvalidOperationException("msg_id too low (most likely, client time is wrong; it would be worthwhile to synchronize it using msg_id notifications and re-send the original message with the “correct” msg_id or wrap it in a container with a new msg_id if the original message had waited too long on the client to be transmitted)");
|
||||
case 17:
|
||||
throw new InvalidOperationException(" msg_id too high (similar to the previous case, the client time has to be synchronized, and the message re-sent with the correct msg_id)");
|
||||
throw new InvalidOperationException("msg_id too high (similar to the previous case, the client time has to be synchronized, and the message re-sent with the correct msg_id)");
|
||||
case 18:
|
||||
throw new InvalidOperationException("incorrect two lower order msg_id bits (the server expects client message msg_id to be divisible by 4)");
|
||||
case 19:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue