KcpPatial.cs 540 B

1234567891011121314151617181920212223
  1. namespace ET
  2. {
  3. public partial class Kcp
  4. {
  5. public const int OneM = 1024 * 1024;
  6. public const int InnerMaxWaitSize = 1024 * 1024;
  7. public const int OuterMaxWaitSize = 1024 * 1024;
  8. public struct SegmentHead
  9. {
  10. public uint conv;
  11. public byte cmd;
  12. public byte frg;
  13. public ushort wnd;
  14. public uint ts;
  15. public uint sn;
  16. public uint una;
  17. public uint len;
  18. }
  19. }
  20. }