misc fix
This commit is contained in:
parent
7fe60eee14
commit
a7f4563050
15
Makefile
15
Makefile
|
@ -1,13 +1,22 @@
|
|||
|
||||
REBAR=./rebar
|
||||
|
||||
all: get-deps compile
|
||||
|
||||
compile: get-deps
|
||||
./rebar compile
|
||||
@$(REBAR) compile
|
||||
|
||||
get-deps:
|
||||
./rebar get-deps
|
||||
@$(REBAR) get-deps
|
||||
|
||||
update-deps:
|
||||
@$(REBAR) update-deps
|
||||
|
||||
xref:
|
||||
@$(REBAR) xref skip_deps=true
|
||||
|
||||
clean:
|
||||
./rebar clean
|
||||
@$(REBAR) clean
|
||||
rm -rf rel/emqtt
|
||||
|
||||
dist:
|
||||
|
|
18
TODO
18
TODO
|
@ -37,4 +37,22 @@ full test cases...
|
|||
|
||||
spawn_link to replace 'spawn' and 'link'
|
||||
|
||||
## ACL
|
||||
|
||||
## Authentication with clientId
|
||||
|
||||
## SSL/TLS Socket
|
||||
|
||||
## $SYS/topics and Broker statistics...
|
||||
|
||||
## Cluster
|
||||
|
||||
## Bridge
|
||||
|
||||
## Websocket
|
||||
|
||||
## MQTT over Websocket
|
||||
|
||||
## Mnesia
|
||||
|
||||
Create Schema...
|
||||
|
|
|
@ -194,7 +194,7 @@ getopts(Sock, Options) when is_port(Sock) ->
|
|||
setopts(Sock, Options) when is_port(Sock) ->
|
||||
inet:setopts(Sock, Options).
|
||||
|
||||
sockname(Sock) when is_port(Sock) -> inet:sockname(Sock).
|
||||
sockname(Sock) when is_port(Sock) -> inet:sockname(Sock).
|
||||
|
||||
peer_string(Sock) ->
|
||||
case peername(Sock) of
|
||||
|
|
|
@ -22,9 +22,16 @@ Router to register queues
|
|||
|
||||
## Topic Tree
|
||||
|
||||
## Offline Message
|
||||
|
||||
## ACL
|
||||
|
||||
## Authentication with clientId
|
||||
|
||||
## SSL/TLS Socket
|
||||
|
||||
## $SYS/topics and Broker statistics...
|
||||
|
||||
## Cluster
|
||||
|
||||
## Bridge
|
||||
|
||||
## Offline Message
|
||||
|
||||
|
|
Loading…
Reference in New Issue