refactor(emqx): Move files related to durable session to a subdir

This commit is contained in:
ieQu1 2024-05-27 23:24:44 +02:00
parent e552b81ade
commit 16d1425982
No known key found for this signature in database
GPG Key ID: 488654DF3FED6FDE
11 changed files with 8 additions and 8 deletions

View File

@ -25,7 +25,7 @@
-include("emqx_mqtt.hrl").
-include("emqx_persistent_session_ds.hrl").
-include("emqx_persistent_session_ds/session_internals.hrl").
-ifdef(TEST).
-include_lib("proper/include/proper.hrl").

View File

@ -21,7 +21,7 @@
-include_lib("stdlib/include/qlc.hrl").
-include_lib("stdlib/include/ms_transform.hrl").
-include("emqx_persistent_session_ds.hrl").
-include("session_internals.hrl").
%% API
-export([

View File

@ -21,7 +21,7 @@
-include_lib("stdlib/include/qlc.hrl").
-include_lib("stdlib/include/ms_transform.hrl").
-include("emqx_persistent_session_ds.hrl").
-include("session_internals.hrl").
%% API
-export([

View File

@ -79,7 +79,7 @@
]).
-include("emqx_mqtt.hrl").
-include("emqx_persistent_session_ds.hrl").
-include("session_internals.hrl").
-include_lib("snabbkaffe/include/trace.hrl").
-include_lib("stdlib/include/qlc.hrl").

View File

@ -29,7 +29,7 @@
-include_lib("emqx/include/logger.hrl").
-include("emqx_mqtt.hrl").
-include("emqx_persistent_session_ds.hrl").
-include("session_internals.hrl").
%%================================================================================
%% Type declarations

View File

@ -41,7 +41,7 @@
-export_type([subscription_state_id/0, subscription/0, subscription_state/0]).
-include("emqx_persistent_session_ds.hrl").
-include("session_internals.hrl").
-include("emqx_mqtt.hrl").
-include_lib("snabbkaffe/include/trace.hrl").

View File

@ -13,8 +13,8 @@
%% See the License for the specific language governing permissions and
%% limitations under the License.
%%--------------------------------------------------------------------
-ifndef(EMQX_PERSISTENT_SESSION_DS_HRL_HRL).
-define(EMQX_PERSISTENT_SESSION_DS_HRL_HRL, true).
-ifndef(EMQX_SESSION_DS_INTERNALS_HRL).
-define(EMQX_SESSION_DS_INTERNALS_HRL, true).
-include("emqx_persistent_message.hrl").