From ef58e15547ee171a716eaa768374e2e7e2f7d397 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Wed, 25 Oct 2017 20:17:21 +0100 Subject: Introduce cowboy_req:sock/1 and cowboy_req:cert/1 To obtain the local socket ip/port and the client TLS certificate, respectively. --- doc/src/manual/cowboy_req.sock.asciidoc | 51 +++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 doc/src/manual/cowboy_req.sock.asciidoc (limited to 'doc/src/manual/cowboy_req.sock.asciidoc') diff --git a/doc/src/manual/cowboy_req.sock.asciidoc b/doc/src/manual/cowboy_req.sock.asciidoc new file mode 100644 index 0000000..c5e7fa7 --- /dev/null +++ b/doc/src/manual/cowboy_req.sock.asciidoc @@ -0,0 +1,51 @@ += cowboy_req:sock(3) + +== Name + +cowboy_req:sock - Socket address and port + +== Description + +[source,erlang] +---- +sock(Req :: cowboy_req:req()) -> Info + +Info :: {inet:ip_address(), inet:port_number()} +---- + +Return the socket's IP address and port number. + +The socket information can also be obtained using pattern matching: + +[source,erlang] +---- +#{sock := {IP, Port}} = Req. +---- + +== Arguments + +Req:: + +The Req object. + +== Return value + +The socket's local IP address and port number. + +== Changelog + +* *2.0*: Function introduced. + +== Examples + +.Get the socket's IP address and port number. +[source,erlang] +---- +{IP, Port} = cowboy_req:sock(Req). +---- + +== See also + +link:man:cowboy_req(3)[cowboy_req(3)], +link:man:cowboy_req:peer(3)[cowboy_req:peer(3)], +link:man:cowboy_req:cert(3)[cowboy_req:cert(3)] -- cgit v1.2.3