Kernel: Implement basic connection-mode unix domain sockets
This commit is contained in:
20
kernel/include/kernel/FS/Socket.h
Normal file
20
kernel/include/kernel/FS/Socket.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#pragma once
|
||||
|
||||
namespace Kernel
|
||||
{
|
||||
|
||||
enum class SocketDomain
|
||||
{
|
||||
INET,
|
||||
INET6,
|
||||
UNIX,
|
||||
};
|
||||
|
||||
enum class SocketType
|
||||
{
|
||||
STREAM,
|
||||
DGRAM,
|
||||
SEQPACKET,
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user