A clone of btpd with my configuration changes.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
250 B

  1. /* tests data packing and unpacking */
  2. struct msg {
  3. string from_name = 1;
  4. string to_name = 2;
  5. optional struct[kill] kill = 3;
  6. array struct[run] run = 4;
  7. }
  8. struct kill {
  9. string weapon = 1;
  10. string action = 2;
  11. }
  12. struct run {
  13. string how = 1;
  14. }