Behaviours: gen_server.
| code_change/3 | |
| get_connection/1 | |
| handle_call/3 | |
| handle_cast/2 | |
| handle_info/2 | |
| init/1 | |
| send_packet/3 | |
| start_link/2 | |
| stop/0 | |
| terminate/2 |
code_change(OldVsn, State, Extra) -> any()
get_connection(ConnID::binary()) -> {ok, pid()} | {error, not_found}
handle_call(Request, From, State) -> any()
handle_cast(Msg, State) -> any()
handle_info(Info, State) -> any()
init(X1) -> any()
send_packet(IP::inet:ip_address(), Port::inet:port_number(), Packet::binary()) -> ok
start_link(Port::integer(), Options::map()) -> {ok, pid()} | {error, term()}
stop() -> ok
terminate(Reason, State) -> any()
Generated by EDoc