fboss/agent/state/ArpTable.cpp (7 lines of code) (raw):

/* * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. * */ #include "fboss/agent/state/ArpTable.h" #include "fboss/agent/state/NeighborTable-defs.h" namespace facebook::fboss { typedef NeighborTableTraits<folly::IPAddressV4, ArpEntry> ArpTableTraits; FBOSS_INSTANTIATE_NODE_MAP(ArpTable, ArpTableTraits); template class NeighborTable<folly::IPAddressV4, ArpEntry, ArpTable>; } // namespace facebook::fboss