~ubuntu-branches/ubuntu/saucy/rabbitmq-server/saucy-proposed

« back to all changes in this revision

Viewing changes to plugins-src/rabbitmq-stomp/include/rabbit_stomp_prefixes.hrl

  • Committer: Package Import Robot
  • Author(s): Emile Joubert
  • Date: 2013-05-02 11:19:31 UTC
  • mfrom: (0.5.2) (0.1.37 sid)
  • Revision ID: package-import@ubuntu.com-20130502111931-xnoj0sejto2tewcj
Tags: 3.1.0-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
%% The contents of this file are subject to the Mozilla Public License
2
 
%% Version 1.1 (the "License"); you may not use this file except in
3
 
%% compliance with the License. You may obtain a copy of the License
4
 
%% at http://www.mozilla.org/MPL/
5
 
%%
6
 
%% Software distributed under the License is distributed on an "AS IS"
7
 
%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
8
 
%% the License for the specific language governing rights and
9
 
%% limitations under the License.
10
 
%%
11
 
%% The Original Code is RabbitMQ.
12
 
%%
13
 
%% The Initial Developer of the Original Code is VMware, Inc.
14
 
%% Copyright (c) 2011-2013 VMware, Inc.  All rights reserved.
15
 
%%
16
 
 
17
 
-define(QUEUE_PREFIX, "/queue").
18
 
-define(TOPIC_PREFIX, "/topic").
19
 
-define(EXCHANGE_PREFIX, "/exchange").
20
 
-define(AMQQUEUE_PREFIX, "/amq/queue").
21
 
-define(TEMP_QUEUE_PREFIX, "/temp-queue").
22
 
%% reply queues names can have slashes in the content so no further
23
 
%% parsing happens.
24
 
-define(REPLY_QUEUE_PREFIX, "/reply-queue/").
25
 
 
26
 
-define(VALID_DEST_PREFIXES, [?EXCHANGE_PREFIX, ?TOPIC_PREFIX, ?QUEUE_PREFIX,
27
 
                    ?AMQQUEUE_PREFIX, ?TEMP_QUEUE_PREFIX, ?REPLY_QUEUE_PREFIX]).
28
 
 
29
 
-define(TEMP_QUEUE_ID_PREFIX, "/temp-queue/").