RunFd attaches the router to a http.Server and starts listening and serving HTTP requests through the specified file descriptor. Note: the method will block the calling goroutine indefinitely unless an error happens.
(fd int)
| 155 | // through the specified file descriptor. |
| 156 | // Note: the method will block the calling goroutine indefinitely unless an error happens. |
| 157 | func RunFd(fd int) (err error) { |
| 158 | return engine().RunFd(fd) |
| 159 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…