Internet plug-in: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
No edit summary |
m (Reverted edits by 94.23.238.222 to last version by 89.160.21.47) |
||
(2 intermediate revisions by 2 users not shown) | |||
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]] |
Latest revision as of 20:25, 15 May 2013
Author: Joel (talk, contrib) |
Links
Main
Internet.zip (11 KB)
Description
Handy functions related to the internet:
- Get the host name of the local machine.
- Get the IP of the local machine.
- 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.