Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | core: Fix tag_iterator failure on empty tags. | Marc | 2022-01-09 | 1 | -4/+0 | |
|/ | | | | | | | | | | | This code used to be `< 0`, but was changed to `<= 0` in commit d40ddfe. Thinking more about this, it's a bad idea to abort on 0 length tags, since it's completely valid for some tags (such as SSID) to be empty. It doesn't make sense to check if `tag_len` is below 0, because it's unsigned. So, remove the check completely. | |||||
* | Merge pull request #3 from libwifi/test | Marc | 2022-01-09 | 52 | -67/+1463 | |
|\ | | | | | test: Add ctests for parse and generate functions. | |||||
| * | test: Add beacon parser test | Marc | 2022-01-09 | 3 | -6/+51 | |
| | | ||||||
| * | util: Move pcaps out of test directory, into utils | Marc | 2021-12-17 | 11 | -0/+0 | |
| | | ||||||
| * | test: Add ctests for generation functions. | Marc | 2021-12-17 | 41 | -62/+1413 | |
|/ | | | | | This commit also enforces error code checking on functions inside of the generation functions, such as for `libwifi_quick_add_tag`. | |||||
* | examples: Remove capture filter from parser examples | Marc | 2021-12-11 | 2 | -15/+1 | |
| | ||||||
* | build: Unset hard dependency on clang in CMake | Marc | 2021-12-07 | 2 | -10/+10 | |
| | | | | This commit also corrects a small warning for gcc. | |||||
* | examples: Fixup beacon generation example | Marc | 2021-12-06 | 1 | -1/+1 | |
| | ||||||
* | misc: Remove extra word | Marc | 2021-12-05 | 1 | -1/+1 | |
| | ||||||
* | misc: Fix incorrect test directory name | Marc | 2021-12-05 | 1 | -1/+1 | |
| | | | | Fixes #2 | |||||
* | examples: Add Makefiles | Marc | 2021-12-05 | 4 | -0/+36 | |
| | | | | Fixes #1 | |||||
* | misc: Update README to point to website for feature checklist. | Marc | 2021-12-03 | 1 | -50/+1 | |
| | ||||||
* | Initial Commit | Marc | 2021-12-01 | 138 | -0/+11553 | |
Signed-off-by: Marc <foxtrot@malloc.me> |