blob: 0dad82a634806e3ac85e5fc9205a5463e48c65dc [file] [log] [blame]
jat@google.com5e86cbd2009-08-22 23:59:24 +00001#ifndef __SWITCHTRANSPORTMESSAGE_H
2#define __SWITCHTRANSPORTMESSAGE_H
3/*
4 * Copyright 2009 Google Inc.
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
7 * use this file except in compliance with the License. You may obtain a copy of
8 * the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15 * License for the specific language governing permissions and limitations under
16 * the License.
17 */
18
19#include <string>
20#include "Message.h"
21#include "BrowserChannel.h"
22#include "Value.h"
23
24class HostChannel;
25
26/**
27 * Class representing an SwitchTransport message received from the server, and a
28 * way to send one.
29 *
30 * The SwitchTransport message is sent by the server in response to a
31 * ChooseTransport message, and will select one of the available transports
32 * advertised by the client. The empty string represents the in-band channel,
33 * and is always an acceptable response.
34 */
35class SwitchTransportMessage : public Message {
36public:
37 static const char TYPE = MESSAGE_TYPE_SWITCH_TRANSPORT;
38private:
39 std::string transport;
40
41protected:
42 SwitchTransportMessage(const std::string& transport) : transport(transport) {}
43
44public:
45 ~SwitchTransportMessage();
46 virtual char getType() const;
47
48 const std::string& getTransport() const { return transport; }
49
50 static SwitchTransportMessage* receive(HostChannel& channel);
51 static bool send(HostChannel& channel, const std::string& transport);
52};
53#endif