This repository has been archived on 2020-12-30. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Marcel Otte fc6b0a9899 Heavy work again finally...
Building a better model of protocol fields and implementing...
... at least the empty hulls, but content will follow.
2018-11-02 21:08:00 +01:00
doc Heavy work again finally... 2018-11-02 21:08:00 +01:00
src Heavy work again finally... 2018-11-02 21:08:00 +01:00
test Heavy work again finally... 2018-11-02 21:08:00 +01:00
xml current work on generic guided editor 2016-08-04 07:29:54 +02:00
.gitignore Heavy work again finally... 2018-11-02 21:08:00 +01:00
.gitlab-ci.yml fixed image to use 2016-10-14 15:54:38 +02:00
CMakeLists.txt Heavy work again finally... 2018-11-02 21:08:00 +01:00
Doxyfile Updated Doxyfile 2018-01-11 09:25:24 +01:00
Readme.md Add Readme.md with further development plan 2018-10-19 21:51:58 +02:00
conanfile.txt Current state of work 2018-06-02 13:56:15 +02:00
main.cpp fixed cmakelists 2015-12-31 18:52:24 +01:00

Readme.md

Network Packet Composer

Is a software to create network packets from scratch for testing purposes.

Minimal functionality in first alpha version

Be able to:

  • Show a row of fields where one field has
    • A name
    • A description
    • A size in bit (values greater are just cut off)
    • A value (input in hex)
  • Convert this row of fields to a binary array through RAB (RandomAccessBinary)
  • Show the created binary array in hex

Second alpha version

Be able to:

  • Use integer as value input, not hex
  • Restrict field input with regular expressions
  • Write the binary to file (through proper interfaces which may be replaced by sending through the network!)
  • Highlight current field inside the shown binary in hex

Third alpha version

  • Allow also text as value input for data payload
    • Means also having a special marked field for payload data (checkbox?)
  • Write and read field structure in YAML to disk

Fourth alpha version

  • Create multiple structures, meaning protocol stacks
  • Write network send logic

Fifth alpha version

  • Optimize
  • Think about next additional features
  • Release beta

First beta - TODO