Skip to content

Commit

Permalink
chore: add highlighting for technical terms
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaMoelans committed Nov 25, 2024
1 parent 79be8c2 commit 7e939c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/platforms/native/configuration/transports.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ background thread or thread pool to avoid blocking execution.
## Using a Proxy
The Native SDK allows the configuration of an HTTP (CONNECT) or SOCKS5 proxy through which requests can be tunneled to our backend. It can be configured via the following option interface:
The Native SDK allows the configuration of an `HTTP` (`CONNECT`) or `SOCKS5` proxy through which requests can be tunneled to our backend. It can be configured via the following option interface:
```c
sentry_options_t *options = sentry_options_new();
Expand All @@ -60,7 +60,7 @@ sentry_init(options);
/* ... */
```
The same function can also be used for the SOCKS5 proxy:
The same function can also be used for the `SOCKS5` proxy:
```c
sentry_options_t *options = sentry_options_new();
sentry_options_set_proxy(options, "socks5://my.proxy:1080");
Expand All @@ -70,7 +70,7 @@ sentry_init(options);
```
We support HTTP proxies on all platforms, and SOCKS5 proxies on Linux and macOS. Depending on the platform, the transport provides a fallback in case the proxy is not reachabled. The following table shows the expected behaviour.
We support `HTTP` proxies on all platforms, and `SOCKS5` proxies on Linux and macOS. Depending on the platform, the transport provides a fallback in case the proxy is not reachabled. The following table shows the expected behaviour.
| Platform | http-proxy | socks-proxy |
|----------|-----------------------------------------------------|------------------------------------------------------|
Expand Down

0 comments on commit 7e939c0

Please sign in to comment.