1*dda28197Spatrick //===-- AbstractSocket.cpp ------------------------------------------------===//
2061da546Spatrick //
3061da546Spatrick // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4061da546Spatrick // See https://llvm.org/LICENSE.txt for license information.
5061da546Spatrick // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6061da546Spatrick //
7061da546Spatrick //===----------------------------------------------------------------------===//
8061da546Spatrick 
9061da546Spatrick #include "lldb/Host/linux/AbstractSocket.h"
10061da546Spatrick 
11061da546Spatrick #include "llvm/ADT/StringRef.h"
12061da546Spatrick 
13061da546Spatrick using namespace lldb;
14061da546Spatrick using namespace lldb_private;
15061da546Spatrick 
AbstractSocket(bool child_processes_inherit)16061da546Spatrick AbstractSocket::AbstractSocket(bool child_processes_inherit)
17061da546Spatrick     : DomainSocket(ProtocolUnixAbstract, child_processes_inherit) {}
18061da546Spatrick 
GetNameOffset() const19061da546Spatrick size_t AbstractSocket::GetNameOffset() const { return 1; }
20061da546Spatrick 
DeleteSocketFile(llvm::StringRef name)21061da546Spatrick void AbstractSocket::DeleteSocketFile(llvm::StringRef name) {}
22