Mailing-List: contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm Sender: cygwin-owner AT sourceware DOT cygnus DOT com Delivered-To: mailing list cygwin AT sourceware DOT cygnus DOT com Message-ID: <37545B80.4C31E1D1@vinschen.de> Date: Wed, 02 Jun 1999 00:15:28 +0200 From: Corinna Vinschen X-Mailer: Mozilla 4.51 [en] (WinNT; I) X-Accept-Language: de,en MIME-Version: 1.0 To: ashishcn AT cisco DOT com CC: cygwin AT sourceware DOT cygnus DOT com Subject: Re: ioctl() SOS -- Please help References: <374C9D2B DOT CBDD1EC4 AT cisco DOT com> <374CA453 DOT 6E07EFD1 AT vinschen DOT de> <374D85CF DOT AC0FFED3 AT cisco DOT com> <374D9F8D DOT 3F370DF3 AT vinschen DOT de> <37544AE1 DOT AFE086C AT cisco DOT com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit "Ashish C. Nagre" wrote: > I have made a strange observation, when the following call is made: > > ioctl(fd, SIOCGIFFLAGS, (char *)&ifr) > > The value returned in the member ifr.ifr_ifru.ifru_flags is different > when I just run the executable compared to when I run it in the > debugger. > ifr.ifr_ifru.ifru_flags = 34 (executable) > ifr.ifr_ifru.ifru_flags = 99 (in gdb) > [...] > Why are the flags returned with different values ? The flags are computed through the address of the interface. Is it possible, that you are testing it on a RAS device, e.g a modem line? When a modem line isn't connected, it returns the IP address 0.0.0.0, when it's connected, it returns a legal address. In case of address 0.0.0.0, the cygwin DLL knows, that the interface isn't connected and so returns the flags IFF_NOTRAILERS | IFF_BROADCAST The hex value of the above flags is 0x34. If the address is a legal IP address, the cygwin DLL knows that the interface is connected and so returns IFF_NOTRAILERS | IFF_BROADCAST | IFF_UP | IFF_RUNNING The hex code is 0x99. You see, both values are possible and you should check it out, if you have tested it under different conditions. Regards, Corinna -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com