Safe Haskell | Safe |
---|---|
Language | Haskell2010 |
- data RemoteHost
Documentation
Use RemoteHost
whenever your request handlers need the host or IP address
from which the client issued the HTTP request. The corresponding handlers
receive arguments of type SockAddr
(from Network.Socket
).
Example:
>>>
-- POST /record-ip
>>>
type API = "record-ip" :> RemoteHost :> Post '[] ()