aboutsummaryrefslogtreecommitdiff
path: root/src/parsec_server/include/net_util_sv.h
blob: 1463a65542088d9f17bf8e222fd3b027e2a68c7e (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
/*
 * PARSEC HEADER: net_util_sv.h
 */

#ifndef _NET_UTIL_SV_H_
#define _NET_UTIL_SV_H_

// net_util_sv.c implements the following functions
// ------------------------------------------------

// external functions ---------------------------------------------------------
//
void		NODE_Copy( node_t* dst, node_t* src );
void		NODE_StorePort( node_t *node, word port );
word		NODE_GetPort( node_t *node );
int			NODE_Compare( node_t *node1, node_t *node2 );
int			NODE_AreSame( node_t *node1, node_t *node2 );
char*		NODE_Print( node_t* node );

// external variables ---------------------------------------------------------
//

#endif // _NET_UTIL_SV_H_