libos: Add copyright/author comments to LocalServer and LocalClient

This commit is contained in:
apio 2023-08-14 12:31:09 +02:00
parent 774177ba1f
commit 02b9dc579b
Signed by: apio
GPG Key ID: B8A7D06E42258954
4 changed files with 36 additions and 0 deletions

View File

@ -1,3 +1,12 @@
/**
* @file LocalClient.h
* @author apio (cloudapio.eu)
* @brief UNIX local domain client class.
*
* @copyright Copyright (c) 2023, the Luna authors.
*
*/
#pragma once #pragma once
#include <luna/OwnedPtr.h> #include <luna/OwnedPtr.h>
#include <luna/StringView.h> #include <luna/StringView.h>

View File

@ -1,3 +1,12 @@
/**
* @file LocalServer.h
* @author apio (cloudapio.eu)
* @brief UNIX local domain server class.
*
* @copyright Copyright (c) 2023, the Luna authors.
*
*/
#pragma once #pragma once
#include <luna/OwnedPtr.h> #include <luna/OwnedPtr.h>
#include <luna/Result.h> #include <luna/Result.h>

View File

@ -1,3 +1,12 @@
/**
* @file LocalClient.cpp
* @author apio (cloudapio.eu)
* @brief UNIX local domain client class.
*
* @copyright Copyright (c) 2023, the Luna authors.
*
*/
#include <errno.h> #include <errno.h>
#include <fcntl.h> #include <fcntl.h>
#include <os/LocalClient.h> #include <os/LocalClient.h>

View File

@ -1,3 +1,12 @@
/**
* @file LocalServer.cpp
* @author apio (cloudapio.eu)
* @brief UNIX local domain server class.
*
* @copyright Copyright (c) 2023, the Luna authors.
*
*/
#include <errno.h> #include <errno.h>
#include <fcntl.h> #include <fcntl.h>
#include <os/FileSystem.h> #include <os/FileSystem.h>