summaryrefslogtreecommitdiffstats
path: root/nserver/src/nsocket.h
blob: 17cea7569475acf1ddd433f29db50b7953c81d00 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: BSD-3-Clause */
/*
 * Copyright © 2020 rsiddharth <s@ricketyspace.net>
 */

#ifndef _nsocket_h
#define _nsocket_h

#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>

#include <dbg.h>

#define PORT "7899"

int get_socket();

#endif