-
-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add support for SOCKS5 proxy (#1063)
* Added socks5_proxy to options * correct options freeing * Update CHANGELOG.md * Add socks5_proxy attribute to curl_transport_state * formatting * refactor to use single proxy attribute * format * Added back deprecated http_proxy API * formatting * refactor sentry_transport_winhttp.c to use opts->proxy * formatting * update crashpad dependency * fix: update minimum libcurl version check to 7.21.7 * update crashpad dependency * test: add proxy integration tests * get latest crashpad changes * feat: add example.c run-args for http and socks5 proxy * test: changed test name + added more mitmdump startup time * chore: format * test: add mitmproxy to requirements.txt * test: add skip for proxy test on non-MacOS platforms * test: move socksproxy-off assert into AssertionError check for Linux test * test: change expected http log length to match platform * test: order of operations * test: run http proxy tests on all platforms * test: add special case for Windows Autoproxy * apply suggestions from code review * chore: added comments about proxy behaviour * cleaned up test and moved comments to proper place (let's hope I didn't mess up CI) * chore: fix minor comment typo * chore: added api documentation * Update include/sentry.h Co-authored-by: Mischan Toosarani-Hausberger <mischan@abovevacant.com> * Update CONTRIBUTING.md Co-authored-by: Mischan Toosarani-Hausberger <mischan@abovevacant.com> * update crashpad submodule * update crashpad submodule (again) * updated CHANGELOG.md * updated CHANGELOG.md again --------- Co-authored-by: Mischan Toosarani-Hausberger <mischan@abovevacant.com>
- Loading branch information
1 parent
d431ab9
commit 99b1539
Showing
15 changed files
with
230 additions
and
25 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ msgpack==1.0.8 | |
pytest-xdist==3.5.0 | ||
clang-format==19.1.3 | ||
pywin32==308; sys_platform == "win32" | ||
mitmproxy==11.0.0 |
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
Oops, something went wrong.