topic type: dynamic or static
This commit is contained in:
parent
1e93f5f513
commit
3c44aeecb8
|
@ -15,6 +15,7 @@ Change: fix emqtt_pubsub.erl to match '#', '+'
|
||||||
|
|
||||||
Tests: emqtt_topic_tests.erl add more test cases
|
Tests: emqtt_topic_tests.erl add more test cases
|
||||||
|
|
||||||
|
|
||||||
v0.3.0-alpha (2015-01-18)
|
v0.3.0-alpha (2015-01-18)
|
||||||
------------------------
|
------------------------
|
||||||
|
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
-record(topic_trie_node, {
|
-record(topic_trie_node, {
|
||||||
node_id :: binary() | atom(),
|
node_id :: binary() | atom(),
|
||||||
edge_count = 0 :: non_neg_integer(),
|
edge_count = 0 :: non_neg_integer(),
|
||||||
topic :: binary()
|
topic :: binary(),
|
||||||
type = dynamic :: dynamic | static
|
type = dynamic :: dynamic | static
|
||||||
}).
|
}).
|
||||||
|
|
||||||
|
|
|
@ -32,7 +32,9 @@
|
||||||
]}
|
]}
|
||||||
]},
|
]},
|
||||||
{emqtt, [
|
{emqtt, [
|
||||||
{auth, {anonymous, []}}, %internal, anonymous
|
%Authetication. Internal, Anonymous Default.
|
||||||
|
{auth, {anonymous, []}},
|
||||||
|
{access, []},
|
||||||
{session, [
|
{session, [
|
||||||
{expires, 1},
|
{expires, 1},
|
||||||
{max_queue, 1000},
|
{max_queue, 1000},
|
||||||
|
|
Loading…
Reference in New Issue