1/*
2 * Copyright 2006-2010, Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
4 *
5 * Authors:
6 *		Axel D��rfler, axeld@pinc-software.de
7 */
8#ifndef NET_SERVER_H
9#define NET_SERVER_H
10
11
12#include <SupportDefs.h>
13
14#include <NetServer.h>
15
16
17class BNetworkAddress;
18
19
20int get_address_family(const char* argument);
21bool parse_address(int32& family, const char* argument,
22	BNetworkAddress& address);
23
24
25#endif	// NET_SERVER_H
26