EnglishРусский  

Ads

Perfect Automation tool
All-In-One: Script editor, Launcher, Scheduler, Keyboard & Mouse Recorder. Try now!

CreateInstall
Freeware and commercial installers.

Cell Phone Batteries
Batteries Plus offers batteries for laptop, camcorder, cell phone, camera.

Gentee needs your help!
How to advertise with us
 
laptop battery

inetnotify_func

Message handling function. When some functions are called, you can specify a function for handing incoming notifications. In particular, it allows you to show the working process to the user. This handling function must have the following parameters.

func uint inetnotify_func (
   uint code,
   inetnotify ni
)

Parameters

code Message code.
$NFYINET_ERRORAn error occurred. The code of the error can be got with the help of the inet_error function.
$NFYINET_CONNECTServer connection.
$NFYINET_SENDSending a request.
$NFYINET_POSTSending data.
$NFYINET_HEADProcessing the header. ni.param points to httpinfo.
$NFYINET_REDIRECTRequest redirection. ni.sparam contains the new URL.
$NFYINET_GETData is received. ni.param contains the total size of all data.
$NFYINET_PUTData is sent. ni.param contains the total size of all data.
$NFYINET_ENDThe connection is terminated.
$NFYFTP_RESPONSEResponse of the FTP server. The field ni.head contains it.
$NFYFTP_SENDCMDSending a command to the FTP server. The field ni.head contains it.
$NFYFTP_NOTPASVPassive mode with the FTP server is unavailable.
ni The variable of the inetnotify type with additional data.

Return value

The function must return 1 to continue working and 0 otherwise.

Related links

Source

Edit