You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add X-BuilderNet-SentAtUs header handling (#60)
Adds the option to extract the `X-BuilderNet-SentAtUs` header to the Go
proxy. Allows 2 connected proxies to establish some latency stats on
exchanged messages, which is useful in benchmarking.
added GetOrGenerateTLS (#44)
This pull request introduces a new utility function, `GetOrGenerateTLS`,
in the `tls/tls_generate.go` file. The function simplifies handling TLS
certificates by attempting to load them from specified paths or
generating and saving new ones if they do not exist.
### TLS Certificate Management:
* Added the `GetOrGenerateTLS` function to load TLS certificates and
keys from specified paths, or generate and save new self-signed
certificates and keys if the files are missing. This includes error
handling for file operations and certificate generation.
(`tls/tls_generate.go`,
[tls/tls_generate.goR14-R54](diffhunk://#diff-dcccc347b7f85fe0c7ad6329e730d69c035152c1993c176b6a8680c1c208949bR14-R54))