X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=mono%2Futils%2Fnetworking.h;h=370a3d0ffaf2dbe9070bc36e6aa8ee732dcd2d99;hb=22448831bbcc3d170f80ae5e3cc02fccd39ff970;hp=55c829152fa88f9c2b0151d10e70164c9a669ef3;hpb=417fc5e7897fab0c675b37930853e861e54f6ee1;p=mono.git diff --git a/mono/utils/networking.h b/mono/utils/networking.h index 55c829152fa..370a3d0ffaf 100644 --- a/mono/utils/networking.h +++ b/mono/utils/networking.h @@ -79,28 +79,28 @@ typedef struct { } MonoAddress; /* This only supports IPV4 / IPV6 and tcp */ -int mono_get_address_info (const char *hostname, int port, int flags, MonoAddressInfo **res) MONO_INTERNAL; +int mono_get_address_info (const char *hostname, int port, int flags, MonoAddressInfo **res); -void mono_free_address_info (MonoAddressInfo *ai) MONO_INTERNAL; +void mono_free_address_info (MonoAddressInfo *ai); -void mono_socket_address_init (MonoSocketAddress *sa, socklen_t *len, int family, const void *address, int port) MONO_INTERNAL; +void mono_socket_address_init (MonoSocketAddress *sa, socklen_t *len, int family, const void *address, int port); -void *mono_get_local_interfaces (int family, int *interface_count) MONO_INTERNAL; +void *mono_get_local_interfaces (int family, int *interface_count); #ifndef HAVE_INET_PTON -int inet_pton (int family, const char *address, void *inaddrp) MONO_INTERNAL; +int inet_pton (int family, const char *address, void *inaddrp); #endif -void mono_address_init (MonoAddress *out_addr, int family, void *in_addr) MONO_INTERNAL; -int mono_address_size_for_family (int family) MONO_INTERNAL; -gboolean mono_networking_addr_to_str (MonoAddress *address, char *buffer, socklen_t buflen) MONO_INTERNAL; +void mono_address_init (MonoAddress *out_addr, int family, void *in_addr); +int mono_address_size_for_family (int family); +gboolean mono_networking_addr_to_str (MonoAddress *address, char *buffer, socklen_t buflen); -int mono_networking_get_tcp_protocol (void) MONO_INTERNAL; -int mono_networking_get_ip_protocol (void) MONO_INTERNAL; -int mono_networking_get_ipv6_protocol (void) MONO_INTERNAL; +int mono_networking_get_tcp_protocol (void); +int mono_networking_get_ip_protocol (void); +int mono_networking_get_ipv6_protocol (void); -void mono_networking_init (void) MONO_INTERNAL; -void mono_networking_shutdown (void) MONO_INTERNAL; +void mono_networking_init (void); +void mono_networking_shutdown (void); #endif