jat@google.com | 5e86cbd | 2009-08-22 23:59:24 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2008 Google Inc. |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| 5 | * use this file except in compliance with the License. You may obtain a copy of |
| 6 | * the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 12 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 13 | * License for the specific language governing permissions and limitations under |
| 14 | * the License. |
| 15 | */ |
| 16 | |
| 17 | #include "SwitchTransportMessage.h" |
| 18 | #include "HostChannel.h" |
| 19 | #include "scoped_ptr/scoped_ptr.h" |
| 20 | |
| 21 | SwitchTransportMessage::~SwitchTransportMessage() { |
| 22 | } |
| 23 | |
| 24 | char SwitchTransportMessage::getType() const { |
| 25 | return TYPE; |
| 26 | } |
| 27 | |
| 28 | /** |
| 29 | * Receive a SwitchTransport message from the server. |
| 30 | */ |
| 31 | SwitchTransportMessage* SwitchTransportMessage::receive(HostChannel& channel) { |
| 32 | std::string transport; |
| 33 | if (!channel.readString(transport)) { |
| 34 | // TODO(jat): error handling |
| 35 | printf("Failed to read transport\n"); |
| 36 | return 0; |
| 37 | } |
| 38 | return new SwitchTransportMessage(transport); |
| 39 | } |
| 40 | |
| 41 | /** |
| 42 | * Send a fatal error message on the channel. |
| 43 | */ |
| 44 | bool SwitchTransportMessage::send(HostChannel& channel, |
| 45 | const std::string& transport) { |
| 46 | if (!channel.sendByte(TYPE)) return false; |
| 47 | if (!channel.sendString(transport)) return false; |
| 48 | return true; |
| 49 | } |