| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Codecov Report✅ All modified and coverable lines are covered by tests. @@ Coverage Diff @@
## master #2936 +/- ##
==========================================
- Coverage 93.07% 93.07% -0.01%
==========================================
Files 43 43
Lines 4506 4503 -3
==========================================
- Hits 4194 4191 -3
Misses 195 195
Partials 117 117 ☔ View full report in Codecov by Sentry.
|
Sorry, something went wrong.
There was a problem hiding this comment.
LGTM
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Summary
tls.NewListener
Benefit
StartConfig.Start and StartConfig.StartTLS already accept a context, but listener creation previously used net.Listen
and tls.Listen, which do not use that context. This change makes listener setup context-aware without changing how the
server behaves after the listener is created.