blob: 9f35488afa848d8d67a1a13578a2a5d0aa9891d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// SPDX-License-Identifier: BSD-2-Clause
// Copyright (c) 2025 Kirill Dmitrievich
// File: receive.hh
// Description: Handle incoming packets
#ifndef CLIENT_RECEIVE_HH
#define CLIENT_RECEIVE_HH
#pragma once
namespace client_receive
{
void init(void);
} // namespace client_receive
#endif
|