mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 15:10:19 +00:00
24 lines
413 B
C++
24 lines
413 B
C++
/*
|
|
* Copyright (c) 2024, Andrew Kaster <andrew@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Platform.h>
|
|
|
|
#if !defined(AK_OS_WINDOWS)
|
|
# include <LibIPC/TransportSocket.h>
|
|
#endif
|
|
|
|
namespace IPC {
|
|
|
|
#if !defined(AK_OS_WINDOWS)
|
|
// Unix Domain Sockets
|
|
using Transport = TransportSocket;
|
|
#else
|
|
# error "LibIPC Transport has not been ported to this platform"
|
|
#endif
|
|
|
|
}
|