Internet plug-in: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
No edit summary
(Functions from the manual)
Line 13: Line 13:
# Get the status code of urls. For example 404 code is for urls that don't exist.
# Get the status code of urls. For example 404 code is for urls that don't exist.


== Functions ==
=== GetLocalHostName ===
Internet::GetLocalHostName return_var
: Returns the name of your local host.
=== GetLocalHostIP ===
Internet::GetLocalHostIP return_var
: Returns the IP of the machine were is running the plugin.
=== GetUrlCode ===
Internet::GetUrlCode "site" "file" return_var
: Returns the status code of a input url to see if a file exists in the server. See the status code page.
: Note: remove the "http" or "ftp" in your links. For example: if you url is "http://www.loco.com/file.zip" then you should input "www.loco.com" as the site and "file.zip" as file.
[[Category:Plugins]]
[[Category:Plugins]]

Revision as of 18:02, 2 November 2009

Author: Joel (talk, contrib)


Links

Main
Internet.zip (11 KB)

Description

Handy functions related to the internet:

  1. Get the host name of the local machine.
  2. Get the IP of the local machine.
  3. Get the status code of urls. For example 404 code is for urls that don't exist.

Functions

GetLocalHostName

Internet::GetLocalHostName return_var
Returns the name of your local host.

GetLocalHostIP

Internet::GetLocalHostIP return_var 
Returns the IP of the machine were is running the plugin.

GetUrlCode

Internet::GetUrlCode "site" "file" return_var
Returns the status code of a input url to see if a file exists in the server. See the status code page.
Note: remove the "http" or "ftp" in your links. For example: if you url is "http://www.loco.com/file.zip" then you should input "www.loco.com" as the site and "file.zip" as file.