// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "net/ntlm/ntlm_constants.h" namespace net::ntlm { AvPair::AvPair() = default; AvPair::AvPair(TargetInfoAvId avid, uint16_t avlen) : … { … } AvPair::AvPair(TargetInfoAvId avid, std::vector<uint8_t> buffer) : … { … } AvPair::AvPair(const AvPair& other) = default; AvPair::AvPair(AvPair&& other) = default; AvPair::~AvPair() = default; AvPair& AvPair::operator=(const AvPair& other) = default; AvPair& AvPair::operator=(AvPair&& other) = default; } // namespace net::ntlm