12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- %% Copyright (c) 2011, Loïc Hoguin <essen@dev-extend.eu>
- %%
- %% Permission to use, copy, modify, and/or distribute this software for any
- %% purpose with or without fee is hereby granted, provided that the above
- %% copyright notice and this permission notice appear in all copies.
- %%
- %% THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- %% WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- %% MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- %% ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- %% WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- %% ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- %% OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- -module(cowboy_tcp_transport).
- -export([name/0, messages/0, listen/1, accept/2, recv/3, send/2, setopts/2,
- controlling_process/2, peername/1, close/1]). %% API.
- -include_lib("kernel/include/inet.hrl").
- %% API.
- -spec name() -> tcp.
- name() -> tcp.
- -spec messages() -> {tcp, tcp_closed, tcp_error}.
- messages() -> {tcp, tcp_closed, tcp_error}.
- -spec listen([{port, Port::ip_port()}])
- -> {ok, LSocket::inet:socket()} | {error, Reason::atom()}.
- listen(Opts) ->
- {port, Port} = lists:keyfind(port, 1, Opts),
- Backlog = proplists:get_value(backlog, Opts, 128),
- gen_tcp:listen(Port, [binary, {active, false},
- {backlog, Backlog}, {packet, raw}, {reuseaddr, true}]).
- -spec accept(LSocket::inet:socket(), Timeout::timeout())
- -> {ok, Socket::inet:socket()}
- | {error, Reason::closed | timeout | atom()}.
- accept(LSocket, Timeout) ->
- gen_tcp:accept(LSocket, Timeout).
- -spec recv(Socket::inet:socket(), Length::integer(), Timeout::timeout())
- -> {ok, Packet::term()} | {error, Reason::closed | atom()}.
- recv(Socket, Length, Timeout) ->
- gen_tcp:recv(Socket, Length, Timeout).
- -spec send(Socket::inet:socket(), Packet::iolist())
- -> ok | {error, Reason::atom()}.
- send(Socket, Packet) ->
- gen_tcp:send(Socket, Packet).
- -spec setopts(Socket::inet:socket(), Opts::list(term()))
- -> ok | {error, Reason::atom()}.
- setopts(Socket, Opts) ->
- inet:setopts(Socket, Opts).
- -spec controlling_process(Socket::inet:socket(), Pid::pid())
- -> ok | {error, Reason::closed | not_owner | atom()}.
- controlling_process(Socket, Pid) ->
- gen_tcp:controlling_process(Socket, Pid).
- -spec peername(Socket::inet:socket())
- -> {ok, {Address::ip_address(), Port::ip_port()}} | {error, atom()}.
- peername(Socket) ->
- inet:peername(Socket).
- -spec close(Socket::inet:socket()) -> ok.
- close(Socket) ->
- gen_tcp:close(Socket).
|