Jump to content

Fixed _getIP()


RBox
 Share

Recommended Posts

The _getIP() function in the Inet.au3 file in the Include folder uses an out-of-date site (whatsmyip.com) that's down. I updated it to work with cmyip.com.

Here goes:

func _getIP()
    Local $ip
    If InetGet("http://www.cmyip.com", @TempDir & "\~ip.tmp") Then
        $ip = FileRead(@TempDir & "\~ip.tmp", FileGetSize(@TempDir & "\~ip.tmp"))
        FileDelete(@TempDir & "\~ip.tmp")
        $ip = StringTrimLeft($ip, 36)
        $ip = StringLeft ($ip, StringInStr($ip, "   - CMyIP.com</title>"))
        Return $ip
    Else
        SetError(1)
        Return -1
    Endif
EndIf
Endfunc

Comments?

Link to comment
Share on other sites

  • 2 months later...

I don't understand the over complicated _GetIP that comes with Autoit. Why don't we just use something like this?:

#include <INet.au3>
msgbox(0,"",GetWAN())
Func GetWAN()
    Return _INetGetSource("http://filezilla.sourceforge.net/misc/ip.php")
EndFunc

"So man has sown the wind and reaped the world. Perhaps in the next few hours there will no remembrance of the past and no hope for the future that might have been." & _"All the works of man will be consumed in the great fire after which he was created." & _"And if there is a future for man, insensitive as he is, proud and defiant in his pursuit of power, let him resolve to live it lovingly, for he knows well how to do so." & _"Then he may say once more, 'Truly the light is sweet, and what a pleasant thing it is for the eyes to see the sun.'" - The Day the Earth Caught Fire

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...