From: David Ford <david@linux.com>
To: Christopher Friesen <cfriesen@nortelnetworks.com>
Cc: linux-kernel@vger.kernel.org
Subject: Re: how to get IP address of current machine from C++ code?
Date: Fri, 03 Nov 2000 13:09:27 -0800 [thread overview]
Message-ID: <3A032986.BF0F89F7@linux.com> (raw)
In-Reply-To: <200010210246.WAA08580@smarty.smart.net> <3A02F7C4.E140D608@nortelnetworks.com>
[-- Attachment #1: Type: text/plain, Size: 717 bytes --]
Christopher Friesen wrote:
> I would like to get the IP address of one of the interfaces of the
> machine that I'm currently on from within some C++ code. It looks like
> I should be able to do this by doing an
>
> ioctl(atoi(fd, SIOCGIFADDR, &ifr)
>
> with the interface name set in the appropriate field in ifr, but I'm not
> sure how I should be getting the proper value for fd. I would
> appreciate some help on this, or if there is a better way then I'd love
> to hear it.
This isn't c++, it's plain c, but it's easy to grok. Called as: gi
[interface]
-d
--
"The difference between 'involvement' and 'commitment' is like an
eggs-and-ham breakfast: the chicken was 'involved' - the pig was
'committed'."
[-- Attachment #2: gi.c --]
[-- Type: text/plain, Size: 1500 bytes --]
/*
* short hack to grab interface information
* gcc -o gi gi.c; strip gi
*
* Blu3, Jan 1999
*/
#include <sys/types.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <net/if.h>
#include <netinet/in.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define SIOCGIFCONF 0x8912 /* get iface list */
int main(int argc, char *argv[])
{
int numreqs = 30, sd, n, search, tick, found=0;
struct ifconf ifc;
struct ifreq *ifr;
struct in_addr *ia;
//
// if there is an arg on the command line, print out the ip of that device
// only. note the numreqs in the above, modify that as is desired.
search= (argc>1);
if(search && strlen(argv[1]) > 64) {
fprintf(stderr, "specified device name too large, ignoring\n");
search=0;
}
sd=socket(AF_INET, SOCK_STREAM, 0);
ifc.ifc_buf = NULL;
ifc.ifc_len = sizeof(struct ifreq) * numreqs;
ifc.ifc_buf = realloc(ifc.ifc_buf, ifc.ifc_len);
if (ioctl(sd, SIOCGIFCONF, &ifc) < 0) {
perror("SIOCGIFCONF");
}
ifr = ifc.ifc_req;
for (n = 0; n < ifc.ifc_len; n += sizeof(struct ifreq)) {
ia= (struct in_addr *) ((ifr->ifr_ifru.ifru_addr.sa_data)+2);
if(search)
tick= strcmp(ifr->ifr_ifrn.ifrn_name, argv[1]);
if(!search)
fprintf(stdout, "%6s %-15s\n", ifr->ifr_ifrn.ifrn_name, inet_ntoa(*ia));
if (search && (tick==0)) {
fprintf(stdout, "%s\n", inet_ntoa(*ia));
found=1;
}
ifr++;
}
free(ifc.ifc_buf);
fprintf(stderr, "exiting with %i\n", found);
exit(found);
}
[-- Attachment #3: Card for David Ford --]
[-- Type: text/x-vcard, Size: 239 bytes --]
begin:vcard
n:Ford;David
x-mozilla-html:TRUE
org:<img src="http://www.kalifornia.com/images/paradise.jpg">
adr:;;;;;;
version:2.1
email;internet:david@kalifornia.com
title:Blue Labs Developer
x-mozilla-cpt:;-12480
fn:David Ford
end:vcard
prev parent reply other threads:[~2000-11-03 21:10 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <200010210246.WAA08580@smarty.smart.net>
2000-11-03 17:37 ` how to get IP address of current machine from C++ code? Christopher Friesen
2000-11-03 21:09 ` David Ford [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3A032986.BF0F89F7@linux.com \
--to=david@linux.com \
--cc=cfriesen@nortelnetworks.com \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.