| // Copyright 2014 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "net/third_party/quic/core/quic_types.h" |
| |
| namespace quic { |
| |
| QuicConsumedData::QuicConsumedData(size_t bytes_consumed, bool fin_consumed) |
| : bytes_consumed(bytes_consumed), fin_consumed(fin_consumed) {} |
| |
| std::ostream& operator<<(std::ostream& os, const QuicConsumedData& s) { |
| os << "bytes_consumed: " << s.bytes_consumed |
| << " fin_consumed: " << s.fin_consumed; |
| return os; |
| } |
| |
| std::ostream& operator<<(std::ostream& os, const Perspective& s) { |
| if (s == Perspective::IS_SERVER) { |
| os << "IS_SERVER"; |
| } else { |
| os << "IS_CLIENT"; |
| } |
| return os; |
| } |
| |
| std::ostream& operator<<(std::ostream& os, const AckedPacket& acked_packet) { |
| os << "{ packet_number: " << acked_packet.packet_number |
| << ", bytes_acked: " << acked_packet.bytes_acked << ", receive_timestamp: " |
| << acked_packet.receive_timestamp.ToDebuggingValue() << "} "; |
| return os; |
| } |
| |
| WriteResult::WriteResult() : status(WRITE_STATUS_ERROR), bytes_written(0) {} |
| |
| WriteResult::WriteResult(WriteStatus status, int bytes_written_or_error_code) |
| : status(status), bytes_written(bytes_written_or_error_code) {} |
| |
| std::ostream& operator<<(std::ostream& os, const WriteResult& s) { |
| os << "{ status: " << s.status; |
| if (s.status == WRITE_STATUS_OK) { |
| os << ", bytes_written: " << s.bytes_written; |
| } else { |
| os << ", error_code: " << s.error_code; |
| } |
| os << " }"; |
| return os; |
| } |
| |
| MessageResult::MessageResult(MessageStatus status, QuicMessageId message_id) |
| : status(status), message_id(message_id) {} |
| |
| } // namespace quic |