blob: 01f2d400dfb676a84f00d082761d29a45423ddc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/* srv9p/gnet.h - libmisc/net.h implementation for libcr + GNU libc
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
* SPDX-Licence-Identifier: AGPL-3.0-or-later
*/
#ifndef _GNET_H_
#define _GNET_H_
#include <stdint.h> /* for uint16_6 */
#include <libmisc/net.h>
struct _gnet_conn {
implements_net_conn;
int fd;
};
struct gnet_listener {
implements_net_listener;
int fd;
struct _gnet_conn active_conn;
};
void gnet_listener_init(struct gnet_listener *self, uint16_t port);
#endif /* _GNET_H_ */
|