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
|
all: get-deps compile
|
||||||
|
|
||||||
compile: get-deps
|
compile: get-deps
|
||||||
./rebar compile
|
@$(REBAR) compile
|
||||||
|
|
||||||
get-deps:
|
get-deps:
|
||||||
./rebar get-deps
|
@$(REBAR) get-deps
|
||||||
|
|
||||||
|
update-deps:
|
||||||
|
@$(REBAR) update-deps
|
||||||
|
|
||||||
|
xref:
|
||||||
|
@$(REBAR) xref skip_deps=true
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
./rebar clean
|
@$(REBAR) clean
|
||||||
rm -rf rel/emqtt
|
rm -rf rel/emqtt
|
||||||
|
|
||||||
dist:
|
dist:
|
||||||
|
|
18
TODO
18
TODO
|
@ -37,4 +37,22 @@ full test cases...
|
||||||
|
|
||||||
spawn_link to replace 'spawn' and 'link'
|
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...
|
||||||
|
|
|
@ -22,9 +22,16 @@ Router to register queues
|
||||||
|
|
||||||
## Topic Tree
|
## Topic Tree
|
||||||
|
|
||||||
|
## Offline Message
|
||||||
|
|
||||||
|
## ACL
|
||||||
|
|
||||||
|
## Authentication with clientId
|
||||||
|
|
||||||
|
## SSL/TLS Socket
|
||||||
|
|
||||||
|
## $SYS/topics and Broker statistics...
|
||||||
|
|
||||||
## Cluster
|
## Cluster
|
||||||
|
|
||||||
## Bridge
|
## Bridge
|
||||||
|
|
||||||
## Offline Message
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue