Find the port bound by snap-server

400 Views Asked by At

Using snap-server's httpServe method, I can setPort 0 to instruct the server to connect on the next free port. Unfortunately, once I have started the http server, I can't find any way to determine which port it actually started on. As an example, my first try started on port 2679 - is there any way to determine that number?

2

There are 2 best solutions below

1
On BEST ANSWER

I wrote this patch, included with snap-server 0.9 and above, using which you can write:

let hook dat = print $ socketPort $ head $ getStartupSockets dat
let config = setStartupHook hook $ setPort 0 mempty
httpServer config ...

Now hook will be called after the server is ready, and will print the port it started on.

1
On

The Config structure has a bunch of getters, no?

getPort :: Config m a -> Maybe Int

Returns the port to listen on (for http)