Fix prototype of retrieve_tcp_flags #33
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: full-check | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: install_dependencies | |
| run: sudo apt install libnet1-dev libpcap0.8-dev | |
| - name: first_build | |
| run: | | |
| ./autogen.sh | |
| ./configure | |
| make | |
| sudo make install | |
| sudo make uninstall | |
| make distclean | |
| - name: second_build | |
| run: | | |
| ./autogen.sh | |
| ./configure | |
| make | |
| sudo make install | |
| - name: run_program | |
| run: | | |
| sudo packit -s 10.0.0.1 -d 203.0.113.1 -FSAF -D 8080 -T 255 | grep "Errors: 0" -C15 | |
| sudo packit -s 10.0.0.1 -d 203.0.113.1 -FPA -D 8080 -T 64 -p "Test of payload" | grep "Errors: 0" -C15 | |
| packit | grep Version |