Gip Internet Protocol Calculator 1.7.0 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Gip Internet Protocol Calculator 1.7.0 (Default branch)
# 1  
Old 01-09-2009
Gip Internet Protocol Calculator 1.7.0 (Default branch)

Image Gip is a GNOME application for making IP address-based calculations. For example, it is possible to calculate subnets from a given range of IP addresses. Also, you can display IP addresses in binary format. License: GNU General Public License (GPL) Changes:
This release comes with a large number of new and updated translations. Some potential build problems were fixed. A better desktop file was added. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. IP Networking

How to i get to the TCP/IP internet protocol menu in Windows 7?

In Windows Vista all that one needs to do is right click your active network and select properties to get the (TCP/IP) internet protocol menu, but i cannot reach that menu in Windows 7. This is the menu that i am trying to reach in Windows 7 : i can't seem to find... (2 Replies)
Discussion started by: Anna Hussie
2 Replies

2. IP Networking

How many ports in an internet protocol that is 16 bit wide?

10. points] The port numbers used in Internet protocol are 16 bit wide. How many ports does this give us? What is the standard port number used by HTTP server? What is a typical HTTP client program?c (1 Reply)
Discussion started by: Anna Hussie
1 Replies
Login or Register to Ask a Question
inet_ntop(3)						     Library Functions Manual						      inet_ntop(3)

NAME
inet_ntop - Converts a numeric address to a text string LIBRARY
Standard C Library (libc.so, libc.a) SYNOPSIS
#include <arpa/inet.h> const char *inet_ntop ( int af, const void *src, char *dst, size_t size) ; PARAMETERS
Specifies the address family. Valid values are AF_INET for an Internet Protocol Version 4 (IPv4) address and AF_INET6 for an IPv6 address. Points to a buffer that contains the numeric Internet address. Points to a buffer that is to contain the text string. Specifies the size of the buffer pointed to by the dst parameter. For Internet Protocol Version 4 (IPv4) addresses, the minimum buffer size is 16 octets. For IPv6 addresses, the minimum buffer size is 46 octets. The <netinet/in.h file defines the INET_ADDRSTRLEN and INET6_ADDRSTRLEN constants, respectively, for for these values. DESCRIPTION
The use of this routine is deprecated. Use the getnameinfo(3) routine instead. The inet_ntop() function converts a binary Internet address value to a formatted text string. RETURN VALUES
Upon successful conversion, the inet_ntop() function returns a pointer to the buffer containing the text string. If the function fails, it returns a NULL pointer. ERRORS
If the inet_ntop() routine call fails, errno is set to one of the following values: The address family specified in af parameter is invalid. The size of the buffer is inadequate. RELATED INFORMATION
Functions: getnamerinfo(3), inet_pton(3). delim off inet_ntop(3)