Code generator for C++ from YAML to generate network protocol parsers
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

24 行
534 B

  1. # Andrew
  2. Code generator to generate network packet parsers in C++ from YAML. It is named after [@DistantValhalla](https://twitter.com/DistantValhalla/), a professional translator from Japanese to English.
  3. ## Installation
  4. ```
  5. crystal build src/andrew.cr
  6. sudo chown root andrew
  7. sudo chmod 0555 andrew
  8. sudo mv andrew /usr/local/bin/
  9. ```
  10. ## Usage
  11. ```
  12. andrew tests/record.yml > record.cpp
  13. ```
  14. See examples in `/tests/`
  15. ## Contributors
  16. - [Ludovic 'Archivist' Lagouardette](https://git.nekoit.xyz/Archivist) - creator and maintainer