chromium/net/third_party/quiche/src/quiche/quic/core/quic_socket_address_coder.cc

// 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 "quiche/quic/core/quic_socket_address_coder.h"

#include <cstring>
#include <string>
#include <vector>

#include "quiche/quic/platform/api/quic_ip_address_family.h"

namespace quic {

namespace {

// For convenience, the values of these constants match the values of AF_INET
// and AF_INET6 on Linux.
const uint16_t kIPv4 =;
const uint16_t kIPv6 =;

}  // namespace

QuicSocketAddressCoder::QuicSocketAddressCoder() {}

QuicSocketAddressCoder::QuicSocketAddressCoder(const QuicSocketAddress& address)
    :{}

QuicSocketAddressCoder::~QuicSocketAddressCoder() {}

std::string QuicSocketAddressCoder::Encode() const {}

bool QuicSocketAddressCoder::Decode(const char* data, size_t length) {}

}  // namespace quic