CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Mar 2005
    Posts
    63

    Unhappy Firewall warning !!

    Hi to all,
    I have a strange problem.
    Sometimes when I run my program (built with VC++ 2003) the firewall
    wake up and say...this program try to connect to internet to address 239.255........
    BUT into my software I don't have code to connect to internet neither that address.
    What's happen ? Who try to connect to internet ? Some MS VC++ dll ?

    many tanks

    mkbs

  2. #2
    Join Date
    Nov 2003
    Location
    Portland, OR
    Posts
    894

    Re: Firewall warning !!

    It may very well be if you're using sockets, for instance, or some APIs from the Ws2_32.dll, such as gethostbyname(), etc.

    First of all, are you sure that the warning is about your program?

    And secondly, if you built it as MFC project, what classes did you use?

  3. #3
    Join Date
    Nov 2001
    Posts
    251

    Re: Firewall warning !!

    If the IP ends in 255, then it's probably broadcasting, which is normal.
    Why it's broadcasting probably has to do something with the .libs you linked to.

    You can use the dependency walker to see what DLLs are linked to your program.
    Last edited by Syslock; September 12th, 2009 at 05:50 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured