Internet plug-in: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
m (Adding new author and category links.) |
m (Reverted edits by 94.23.238.222 to last version by 89.160.21.47) |
||
(12 intermediate revisions by 4 users not shown) | |||
Line 2: | Line 2: | ||
== Links == | == Links == | ||
[http:// | [http://nsis.sourceforge.net/Joel_plugin_src Main] | ||
<br> | |||
<attach>Internet.zip</attach> | |||
== Description == | == Description == | ||
Handy functions | Handy functions related to the internet: | ||
# Get the host name of the local machine.<br> | |||
# Get the IP of the local machine.<br> | |||
# 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.