MCPcopy
hub / github.com/caddyserver/certmagic / getSolverInfo

Function getSolverInfo

solvers.go:695–702  ·  view source on GitHub ↗

getSolverInfo gets a valid solverInfo struct for address.

(address string)

Source from the content-addressed store, hash-verified

693
694// getSolverInfo gets a valid solverInfo struct for address.
695func getSolverInfo(address string) *solverInfo {
696 si, ok := solvers[address]
697 if !ok {
698 si = &solverInfo{done: make(chan struct{})}
699 solvers[address] = si
700 }
701 return si
702}
703
704// robustTryListen calls net.Listen for a TCP socket at addr.
705// This function may return both a nil listener and a nil error!

Callers 4

PresentMethod · 0.85
CleanUpMethod · 0.85
PresentMethod · 0.85
CleanUpMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…