inetaddr

Name

inetaddr -- 

Synopsis



struct      GInetAddr;
enum        GInetAddrAsyncStatus;
typedef     GInetAddrNewAsyncID;
void        (*GInetAddrNewAsyncFunc)        (GInetAddr *inetaddr,
                                             GInetAddrAsyncStatus status,
                                             gpointer data);
typedef     GInetAddrGetNameAsyncID;
void        (*GInetAddrGetNameAsyncFunc)    (GInetAddr *inetaddr,
                                             GInetAddrAsyncStatus status,
                                             gchar *name,
                                             gpointer data);
GInetAddr*  gnet_inetaddr_new               (const gchar *name,
                                             gint port);
GInetAddrNewAsyncID gnet_inetaddr_new_async (const gchar *name,
                                             gint port,
                                             GInetAddrNewAsyncFunc func,
                                             gpointer data);
void        gnet_inetaddr_new_async_cancel  (GInetAddrNewAsyncID async_id);
GInetAddr*  gnet_inetaddr_new_nonblock      (const gchar *name,
                                             gint port);
GInetAddr*  gnet_inetaddr_clone             (const GInetAddr *ia);
void        gnet_inetaddr_delete            (GInetAddr *ia);
void        gnet_inetaddr_ref               (GInetAddr *ia);
void        gnet_inetaddr_unref             (GInetAddr *ia);
gchar*      gnet_inetaddr_get_name          (GInetAddr *ia);
gchar*      gnet_inetaddr_get_name_nonblock (GInetAddr *ia);
GInetAddrGetNameAsyncID gnet_inetaddr_get_name_async
                                            (GInetAddr *ia,
                                             GInetAddrGetNameAsyncFunc func,
                                             gpointer data);
void        gnet_inetaddr_get_name_async_cancel
                                            (GInetAddrGetNameAsyncID async_id);
gchar*      gnet_inetaddr_get_canonical_name
                                            (const GInetAddr *ia);
gint        gnet_inetaddr_get_port          (const GInetAddr *ia);
void        gnet_inetaddr_set_port          (const GInetAddr *ia,
                                             guint port);
gboolean    gnet_inetaddr_is_canonical      (const gchar *name);
gboolean    gnet_inetaddr_is_internet       (const GInetAddr *inetaddr);
gboolean    gnet_inetaddr_is_private        (const GInetAddr *inetaddr);
gboolean    gnet_inetaddr_is_reserved       (const GInetAddr *inetaddr);
gboolean    gnet_inetaddr_is_loopback       (const GInetAddr *inetaddr);
gboolean    gnet_inetaddr_is_multicast      (const GInetAddr *inetaddr);
gboolean    gnet_inetaddr_is_broadcast      (const GInetAddr *inetaddr);
guint       gnet_inetaddr_hash              (gconstpointer p);
gint        gnet_inetaddr_equal             (gconstpointer p1,
                                             gconstpointer p2);
gint        gnet_inetaddr_noport_equal      (gconstpointer p1,
                                             gconstpointer p2);
gchar*      gnet_inetaddr_gethostname       (void);
GInetAddr*  gnet_inetaddr_gethostaddr       (void);
GInetAddr*  gnet_inetaddr_new_any           (void);
GInetAddr*  gnet_inetaddr_autodetect_internet_interface
                                            (void);
GInetAddr*  gnet_inetaddr_get_interface_to  (const GInetAddr *addr);
GInetAddr*  gnet_inetaddr_get_internet_interface
                                            (void);
gboolean    gnet_inetaddr_is_internet_domainname
                                            (const gchar *name);
GList*      gnet_inetaddr_list_interfaces   (void);

Description

Details

struct GInetAddr

struct GInetAddr;


enum GInetAddrAsyncStatus

typedef enum {
  GINETADDR_ASYNC_STATUS_OK,
  GINETADDR_ASYNC_STATUS_ERROR
} GInetAddrAsyncStatus;

Status of a asynchronous lookup (from gnet_inetaddr_new_async() or gnet_inetaddr_get_name_async()), passed by GInetAddrNewAsyncFunc or GInetAddrGetNameAsyncFunc. More errors may be added in the future, so it's best to compare against GINETADDR_ASYNC_STATUS_OK.


GInetAddrNewAsyncID

ID of an asynchronous InetAddr creation started with gnet_inetaddr_new_async(). The creation can be canceled by calling gnet_inetaddr_new_async_cancel() with the ID.


GInetAddrNewAsyncFunc ()

void        (*GInetAddrNewAsyncFunc)        (GInetAddr *inetaddr,
                                             GInetAddrAsyncStatus status,
                                             gpointer data);

Callback for gnet_inetaddr_new_async(). Caller owns the address; the callee should copy it if necessary. FIX: In next major version, make inetaddr callee owned. GInetAddrGetNameAsyncFunc and GTcpSocketConnectAsyncFunc both pass callee owned data.

Callback for gnet_inetaddr_new_async().


GInetAddrGetNameAsyncID

ID of an asynchronous InetAddr name lookup started with gnet_inetaddr_get_name_async(). The lookup can be canceled by calling gnet_inetaddr_get_name_async_cancel() with the ID.


GInetAddrGetNameAsyncFunc ()

void        (*GInetAddrGetNameAsyncFunc)    (GInetAddr *inetaddr,
                                             GInetAddrAsyncStatus status,
                                             gchar *name,
                                             gpointer data);

Callback for gnet_inetaddr_get_name_async(). Delete the name when you're done with it. The GInetAddr is the GInetAddr passed to gnet_inetaddr_get_name_async() -- the address is not copied. (FIX: In 1.2.0, don't pass the InetAddr.)


gnet_inetaddr_new ()

GInetAddr*  gnet_inetaddr_new               (const gchar *name,
                                             gint port);

Create an internet address from a name and port. This function may block.


gnet_inetaddr_new_async ()

GInetAddrNewAsyncID gnet_inetaddr_new_async (const gchar *name,
                                             gint port,
                                             GInetAddrNewAsyncFunc func,
                                             gpointer data);

Create a GInetAddr from a name and port asynchronously. The callback is called once the structure is created or an error occurs during lookup. The callback will not be called during the call to gnet_inetaddr_new_async().

The Unix version creates a pthread thread which does the lookup. If pthreads aren't available, it forks and does the lookup. Forking will be slow or even fail when using operating systems that copy the entire process when forking.

If you need to lookup hundreds of addresses, we recommend calling g_main_iteration(FALSE) between calls. This will help prevent an explosion of threads or processes.

If you need a more robust library for Unix, look at <ulink url="http://www.gnu.org/software/adns/adns.html">GNU ADNS</ulink>. GNU ADNS is under the GNU GPL. This library does not use threads or processes.

The Windows version should work fine. Windows has an asynchronous DNS lookup function.


gnet_inetaddr_new_async_cancel ()

void        gnet_inetaddr_new_async_cancel  (GInetAddrNewAsyncID async_id);

Cancel an asynchronous GInetAddr creation that was started with gnet_inetaddr_new_async().


gnet_inetaddr_new_nonblock ()

GInetAddr*  gnet_inetaddr_new_nonblock      (const gchar *name,
                                             gint port);

Create an internet address from a name and port, but don't block and fail if it would require blocking. This is, if the name is a canonical name or "localhost", it returns the address. Otherwise, it returns NULL.


gnet_inetaddr_clone ()

GInetAddr*  gnet_inetaddr_clone             (const GInetAddr *ia);

Create an internet address from another one.


gnet_inetaddr_delete ()

void        gnet_inetaddr_delete            (GInetAddr *ia);

Delete a GInetAddr.


gnet_inetaddr_ref ()

void        gnet_inetaddr_ref               (GInetAddr *ia);

Increment the reference counter of the GInetAddr.


gnet_inetaddr_unref ()

void        gnet_inetaddr_unref             (GInetAddr *ia);

Remove a reference from the GInetAddr. When reference count reaches 0, the address is deleted.


gnet_inetaddr_get_name ()

gchar*      gnet_inetaddr_get_name          (GInetAddr *ia);

Get the nice name of the address (eg, "mofo.eecs.umich.edu"). The "nice name" is the domain name if it has one or the canonical name if it does not. Be warned that this call may block since it may need to do a reverse DNS lookup.


gnet_inetaddr_get_name_nonblock ()

gchar*      gnet_inetaddr_get_name_nonblock (GInetAddr *ia);

Get the nice name of the address, but don't block and fail if it would require blocking.


gnet_inetaddr_get_name_async ()

GInetAddrGetNameAsyncID gnet_inetaddr_get_name_async
                                            (GInetAddr *ia,
                                             GInetAddrGetNameAsyncFunc func,
                                             gpointer data);

Get the nice name of the address (eg, "mofo.eecs.umich.edu"). This function will use the callback once it knows the nice name. The callback will not be called during the call to gnet_inetaddr_new_async().

The Unix uses either pthreads or fork(). See the notes for gnet_inetaddr_new_async().

FIX: In the next big version, this should copy ia.


gnet_inetaddr_get_name_async_cancel ()

void        gnet_inetaddr_get_name_async_cancel
                                            (GInetAddrGetNameAsyncID async_id);

Cancel an asynchronous nice name lookup that was started with gnet_inetaddr_get_name_async().


gnet_inetaddr_get_canonical_name ()

gchar*      gnet_inetaddr_get_canonical_name
                                            (const GInetAddr *ia);

Get the "canonical" name of an address (eg, for IP4 the dotted decimal name 141.213.8.59).


gnet_inetaddr_get_port ()

gint        gnet_inetaddr_get_port          (const GInetAddr *ia);

Get the port number.


gnet_inetaddr_set_port ()

void        gnet_inetaddr_set_port          (const GInetAddr *ia,
                                             guint port);

Set the port number.


gnet_inetaddr_is_canonical ()

gboolean    gnet_inetaddr_is_canonical      (const gchar *name);

Check if the domain name is canonical. For IPv4, a canonical name is a dotted decimal name (eg, 141.213.8.59).


gnet_inetaddr_is_internet ()

gboolean    gnet_inetaddr_is_internet       (const GInetAddr *inetaddr);

Check if the address is a sensible internet address. This mean it is not private, reserved, loopback, multicast, or broadcast.

Note that private and loopback address are often valid addresses, so this should only be used to check for general Internet connectivity. That is, if the address passes, it is reachable on the Internet.


gnet_inetaddr_is_private ()

gboolean    gnet_inetaddr_is_private        (const GInetAddr *inetaddr);

Check if the address is an address reserved for private networks or something else. This includes:

10.0.0.0 - 10.255.255.255 (10/8 prefix) 172.16.0.0 - 172.31.255.255 (172.16/12 prefix) 192.168.0.0 - 192.168.255.255 (192.168/16 prefix)

(from RFC 1918. See also draft-manning-dsua-02.txt)


gnet_inetaddr_is_reserved ()

gboolean    gnet_inetaddr_is_reserved       (const GInetAddr *inetaddr);

Check if the address is reserved for 'something'. This excludes address reserved for private networks.

We check for: 0.0.0.0/16 (top 16 bits are 0's) Class E (top 5 bits are 11110)


gnet_inetaddr_is_loopback ()

gboolean    gnet_inetaddr_is_loopback       (const GInetAddr *inetaddr);

Check if the address is a loopback address. Loopback addresses have the prefix 127.0.0.1/16.


gnet_inetaddr_is_multicast ()

gboolean    gnet_inetaddr_is_multicast      (const GInetAddr *inetaddr);

Check if the address is a multicast address. Multicast address are in the range 224.0.0.1 - 239.255.255.255 (ie, the top four bits are 1110).


gnet_inetaddr_is_broadcast ()

gboolean    gnet_inetaddr_is_broadcast      (const GInetAddr *inetaddr);

Check if the address is a broadcast address. The broadcast address is 255.255.255.255. (Network broadcast address are network dependent.)


gnet_inetaddr_hash ()

guint       gnet_inetaddr_hash              (gconstpointer p);

Hash the address. This is useful for glib containers.


gnet_inetaddr_equal ()

gint        gnet_inetaddr_equal             (gconstpointer p1,
                                             gconstpointer p2);

Compare two GInetAddr's.


gnet_inetaddr_noport_equal ()

gint        gnet_inetaddr_noport_equal      (gconstpointer p1,
                                             gconstpointer p2);

Compare two GInetAddr's, but does not compare the port numbers.


gnet_inetaddr_gethostname ()

gchar*      gnet_inetaddr_gethostname       (void);

Get the primary host's name.


gnet_inetaddr_gethostaddr ()

GInetAddr*  gnet_inetaddr_gethostaddr       (void);

Get the primary host's GInetAddr.


gnet_inetaddr_new_any ()

GInetAddr*  gnet_inetaddr_new_any           (void);

Create a GInetAddr with the address INADDR_ANY and port 0. This is useful for creating default addresses for binding. The address's name will be "<INADDR_ANY>".


gnet_inetaddr_autodetect_internet_interface ()

GInetAddr*  gnet_inetaddr_autodetect_internet_interface
                                            (void);

Find an Internet interface. Usually, this interface routes packets to and from the Internet. It can be used to automatically configure simple servers that must advertise their address. This sometimes doesn't work correctly when the user is behind a NAT.


gnet_inetaddr_get_interface_to ()

GInetAddr*  gnet_inetaddr_get_interface_to  (const GInetAddr *addr);

Figure out which local interface would be used to send a packet to addr. This works on some systems, but not others. We recommend using gnet_inetaddr_autodetect_internet_interface() to find an Internet interface since it's more likely to work.


gnet_inetaddr_get_internet_interface ()

GInetAddr*  gnet_inetaddr_get_internet_interface
                                            (void);

Find an Internet interface. This just calls gnet_inetaddr_list_interfaces() and returns the first one that passes gnet_inetaddr_is_internet(). This works well on some systems, but not so well on others. We recommend using gnet_inetaddr_autodetect_internet_interface() to find an Internet interface since it's more likely to work.


gnet_inetaddr_is_internet_domainname ()

gboolean    gnet_inetaddr_is_internet_domainname
                                            (const gchar *name);

Check if the domain name is a sensible Internet domain name. This function uses heuristics and does not use DNS (or even block). For example, "localhost" and "10.10.23.42" are not sensible Internet domain names. (10.10.23.42 is a network address, but not accessible to the Internet at large.)


gnet_inetaddr_list_interfaces ()

GList*      gnet_inetaddr_list_interfaces   (void);

Get a list of GInetAddr interfaces's on this host. This list includes all "up" Internet interfaces and the loopback interface, if it exists.

Note that the Windows version supports a maximum of 10 interfaces. In Windows NT, Service Pack 4 (or higher) is required.