summaryrefslogtreecommitdiff
path: root/deps/rabbitmq_stomp/src/rabbit_stomp_connection_info.erl
diff options
context:
space:
mode:
Diffstat (limited to 'deps/rabbitmq_stomp/src/rabbit_stomp_connection_info.erl')
-rw-r--r--deps/rabbitmq_stomp/src/rabbit_stomp_connection_info.erl25
1 files changed, 25 insertions, 0 deletions
diff --git a/deps/rabbitmq_stomp/src/rabbit_stomp_connection_info.erl b/deps/rabbitmq_stomp/src/rabbit_stomp_connection_info.erl
new file mode 100644
index 0000000000..e1562796e3
--- /dev/null
+++ b/deps/rabbitmq_stomp/src/rabbit_stomp_connection_info.erl
@@ -0,0 +1,25 @@
+%% The contents of this file are subject to the Mozilla Public License
+%% Version 1.1 (the "License"); you may not use this file except in
+%% compliance with the License. You may obtain a copy of the License
+%% at https://www.mozilla.org/MPL/
+%%
+%% Software distributed under the License is distributed on an "AS IS"
+%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
+%% the License for the specific language governing rights and
+%% limitations under the License.
+%%
+%% The Original Code is RabbitMQ.
+%%
+%% The Initial Developer of the Original Code is GoPivotal, Inc.
+%% Copyright (c) 2018-2020 VMware, Inc. or its affiliates. All rights reserved.
+%%
+-module(rabbit_stomp_connection_info).
+
+%% Note: this is necessary to prevent code:get_object_code from
+%% backing up due to a missing module. See VESC-888.
+
+%% API
+-export([additional_authn_params/4]).
+
+additional_authn_params(_Creds, _VHost, _Pid, _Infos) ->
+ [].