Added performance counter "Available Physical Memory".
[mono.git] / mono / utils / networking.h
1 /*
2  * networking.h: Portable networking functions
3  *
4  * Author:
5  *      Rodrigo Kumpera (kumpera@gmail.com)
6  *
7  * (C) 2015 Xamarin
8  */
9
10
11 #ifndef __MONO_NETWORKING_H__
12 #define __MONO_NETWORKING_H__
13
14 #include <config.h>
15
16 #ifdef HAVE_ARPA_INET_H
17 #include <arpa/inet.h>
18 #endif
19 #include <sys/types.h>
20 #ifdef HAVE_SYS_SOCKET_H
21 #include <sys/socket.h>
22 #endif
23
24 #ifdef HOST_WIN32
25 #include <winsock2.h>
26 #include <ws2tcpip.h>
27 #endif
28
29 #include <mono/utils/mono-compiler.h>
30
31 typedef enum {
32         MONO_HINT_UNSPECIFIED           = 0,
33         MONO_HINT_IPV4                          = 1,
34         MONO_HINT_IPV6                          = 2,
35         MONO_HINT_CANONICAL_NAME        = 4,
36         MONO_HINT_CONFIGURED_ONLY       = 8,
37 } MonoGetAddressHints;
38
39 typedef struct _MonoAddressEntry MonoAddressEntry;
40
41 struct _MonoAddressEntry {
42         int family;
43         int socktype;
44         int protocol;
45         int address_len;
46         union {
47                 struct in_addr v4;
48                 struct in6_addr v6;
49         } address;
50         const char *canonical_name;
51         MonoAddressEntry *next;
52 };
53
54 typedef struct {
55         MonoAddressEntry *entries;
56         char **aliases;
57 } MonoAddressInfo;
58
59 typedef union {
60         struct sockaddr_in v4;
61         struct sockaddr_in6 v6;
62         struct sockaddr addr;
63 } MonoSocketAddress;
64
65 /* This only supports IPV4 / IPV6 and tcp */
66 int mono_get_address_info (const char *hostname, int port, int flags, MonoAddressInfo **res) MONO_INTERNAL;
67
68 void mono_free_address_info (MonoAddressInfo *ai) MONO_INTERNAL;
69
70 void mono_socket_address_init (MonoSocketAddress *sa, socklen_t *len, int family, const void *address, int port) MONO_INTERNAL;
71
72 void *mono_get_local_interfaces (int family, int *interface_count) MONO_INTERNAL;
73
74 #ifndef HAVE_INET_PTON
75 int inet_pton (int family, const char *address, void *inaddrp) MONO_INTERNAL;
76 #endif
77
78 int mono_networking_get_tcp_protocol (void) MONO_INTERNAL;
79 int mono_networking_get_ip_protocol (void) MONO_INTERNAL;
80 int mono_networking_get_ipv6_protocol (void) MONO_INTERNAL;
81
82 #endif