Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. namespace MetaBase;
  2.  
  3. struct Relations {
  4.   name:string;
  5.   timeout:uint;
  6.   cipher:bool;
  7. }
  8.  
  9. struct Server {
  10.   name:string;
  11.   protocol:string;
  12.   ip:string;
  13.   port:ushort;
  14.   backlog:int;
  15.   mtu:uint;
  16.   keepalivems:uint;
  17.   cipher:bool;
  18.   relations:Relations;
  19. }
  20.  
  21. table ServerArray {
  22.   arraytest:[Server];
  23. }
  24.  
  25. root_type ServerArray;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement