ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/netdisp.C
(Generate patch)

Comparing rxvt-unicode/src/netdisp.C (file contents):
Revision 1.3 by pcg, Sat Jan 31 00:20:21 2004 UTC vs.
Revision 1.9 by root, Thu Dec 22 15:28:15 2005 UTC

1/*--------------------------------*-C-*---------------------------------* 1/*--------------------------------*-C-*---------------------------------*
2 * File: netdisp.c 2 * File: netdisp.C
3 *----------------------------------------------------------------------* 3 *----------------------------------------------------------------------*
4 * $Id: netdisp.C,v 1.3 2004/01/31 00:20:21 pcg Exp $
5 * 4 *
6 * All portions of code are copyright by their respective author/s. 5 * All portions of code are copyright by their respective author/s.
7 * Copyright (c) 1996 Chuck Blake <cblake@BBN.COM> 6 * Copyright (c) 1996 Chuck Blake <cblake@BBN.COM>
8 * - original version 7 * - original version
9 * Copyright (c) 1997 mj olesen <olesen@me.queensu.ca> 8 * Copyright (c) 1997 mj olesen <olesen@me.queensu.ca>
39#include "netdisp.h" 38#include "netdisp.h"
40 39
41/*----------------------------------------------------------------------*/ 40/*----------------------------------------------------------------------*/
42/* return NULL a pointer to buffer which may be freed */ 41/* return NULL a pointer to buffer which may be freed */
43char * 42char *
44rxvt_network_display(const char *display) 43rxvt_network_display (const char *display)
45{ 44{
46 char buffer[1024], *rval = NULL; 45 char buffer[1024], *rval = NULL;
47 struct ifconf ifc; 46 struct ifconf ifc;
48 struct ifreq *ifr; 47 struct ifreq *ifr;
49 int i, skfd; 48 int i, skfd;
50 49
51 if (display[0] != ':' && STRNCMP(display, "unix:", 5)) 50 if (display[0] != ':' && strncmp (display, "unix:", 5))
52 return (char *) display; /* nothing to do */ 51 return (char *) display; /* nothing to do */
53 52
54 ifc.ifc_len = sizeof(buffer); /* Get names of all ifaces */ 53 ifc.ifc_len = sizeof (buffer); /* Get names of all ifaces */
55 ifc.ifc_buf = buffer; 54 ifc.ifc_buf = buffer;
56 55
57 if ((skfd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) { 56 if ((skfd = socket (AF_INET, SOCK_DGRAM, 0)) < 0)
57 {
58 perror("socket"); 58 perror ("socket");
59 return NULL; 59 return NULL;
60 }
61 if (ioctl(skfd, SIOCGIFCONF, &ifc) < 0) {
62 perror("SIOCGIFCONF");
63 close(skfd);
64 return NULL;
65 }
66 for (i = 0, ifr = ifc.ifc_req;
67 i < (ifc.ifc_len / sizeof(struct ifreq));
68 i++, ifr++) {
69 struct ifreq ifr2;
70
71 STRCPY(ifr2.ifr_name, ifr->ifr_name);
72 if (ioctl(skfd, SIOCGIFADDR, &ifr2) >= 0) {
73 unsigned long addr;
74 struct sockaddr_in *p_addr;
75
76 p_addr = (struct sockaddr_in *)&(ifr2.ifr_addr);
77 addr = htonl((unsigned long)p_addr->sin_addr.s_addr);
78
79 /*
80 * not "0.0.0.0" or "127.0.0.1" - so format the address
81 */
82 if (addr && addr != 0x7F000001) {
83 char *colon = STRCHR(display, ':');
84
85 if (colon == NULL)
86 colon = ":0.0";
87
88 rval = rxvt_malloc(STRLEN(colon) + 16);
89 sprintf(rval, "%d.%d.%d.%d%s",
90 (int)((addr >> 030) & 0xFF),
91 (int)((addr >> 020) & 0xFF),
92 (int)((addr >> 010) & 0xFF),
93 (int)(addr & 0xFF), colon);
94 break;
95 }
96 }
97 } 60 }
98 61
62 if (ioctl (skfd, SIOCGIFCONF, &ifc) < 0)
63 {
64 perror ("SIOCGIFCONF");
99 close(skfd); 65 close (skfd);
66 return NULL;
67 }
68
69 for (i = 0, ifr = ifc.ifc_req;
70 i < (ifc.ifc_len / sizeof (struct ifreq));
71 i++, ifr++)
72 {
73 struct ifreq ifr2;
74
75 strcpy (ifr2.ifr_name, ifr->ifr_name);
76
77 if (ioctl (skfd, SIOCGIFADDR, &ifr2) >= 0)
78 {
79 unsigned long addr;
80 struct sockaddr_in *p_addr;
81
82 p_addr = (struct sockaddr_in *) &ifr2.ifr_addr;
83 addr = htonl ((unsigned long)p_addr->sin_addr.s_addr);
84
85 /*
86 * not "0.0.0.0" or "127.0.0.1" - so format the address
87 */
88 if (addr && addr != 0x7F000001)
89 {
90 char *colon = strchr (display, ':');
91
92 if (colon == NULL)
93 colon = ":0.0";
94
95 rval = rxvt_malloc (strlen (colon) + 16);
96 sprintf (rval, "%d.%d.%d.%d%s",
97 (int) ((addr >> 030) & 0xFF),
98 (int) ((addr >> 020) & 0xFF),
99 (int) ((addr >> 010) & 0xFF),
100 (int) (addr & 0xFF), colon);
101 break;
102 }
103 }
104 }
105
106 close (skfd);
107
100 return rval; 108 return rval;
101} 109}
102#endif /* DISPLAY_IS_IP */ 110#endif /* DISPLAY_IS_IP */
103/*----------------------- end-of-file (C source) -----------------------*/ 111/*----------------------- end-of-file (C source) -----------------------*/

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines