Limited The discounts maybe time limited. Don't miss it out! Promo Info Other LicenseWe offer various licenses/editions for this product. Save 20% off by purchasing 1 Developer License, no coupon code needed, shown below:
Note: Once at the shopping cart web page, please fill the number into the quantity blank to purchase this product. (1 is default)
Click "Get It Now" Button above or below to activate this coupon code or deal. It's only valid on SoftCns.com If The Coupon Code Not Available Please bookmark this page first, and then clear the cookies of your browser. Lastly, restart your browser again or try to use another web browser, If you don't get it clearly, please visit Coupon Using Guide or send us expired.
HS FTP is a software library written in C which implements the client side of the File Transfer Protocol over TCP socket layer according to RFC 959.
HS FTP is offered with full source code in C language and can be used from C/C++ programs
The library allows a user application to connect to remote FTP servers, traverse server directory structure, send, receive, delete and rename files, create, remove and rename folders. The HS FTP protocol module supports passive mode data connections, user / password authentication and many FTP commands sequences: USER, PASS, TYPE, PASV, LIST, CWD, MKD, RMD, RETR, STOR, DELE, PWD, RNFR, RNTO.
HS FTP also supports recursive download, upload and delete of folder with all files and sub-folders. There are functions for configuration and statistics.
The use of HS FTP C Source Library is Royalty Free.
To connect to remote FTP server, the user application calls HsFtpCliConnect function, supplying connection parameters, such as remote FTP server name or IP address, username and password for authentication etc. It also supplies a pointer to callback function that the HS FTP module uses to communicate with the user code.
When the control FTP connection is established and HS FTP has successfully passed user / password FTP account authentication phase, the user application is asynchronously notified via event HS_FTPCLI_USR_EV_LOGGEDIN
At this point, the user application can request remote FTP server directory listing using HsFtpCliList function, request to change current directory at remote FTP server with HsFtpCliChDr function or transfer binary files to and from remote FTP server with HsFtpCliSendFile and HsFtpCliGetFile functions.
The result of each operation is asynchronously notified via corresponding events.
HS FTP Library Architecture
Sending files: The files are sent by HS FTP module in binary image mode (TYPE I) using passive mode data connections. Whenever HS FTP and underlying socket layer interface module HS SOCK are ready to transmit next block of file data, the user application is requested for next data block to send via event callback with HS_FTPCLI_USR_EV_TXSEG event.
Receiving Files: The files are received by HS FTP module in binary image mode (TYPE I) in passive data connection mode. Whenever the next block of data from the remote FTP server becomes available, the data is passed to the user application via event callback with HS_FTPCLI_USR_EV_RXSEG event.
HS FTP library is designed for single threaded, event driven environment, and includes built in socket interface layer library for asynchronous Win32 TCP/IP communications, the source code for which is also provided.
HS FTP C Source library has flexible modular architecture, portable to any OS with minimal or no effort.
The underlying socket interface module HS SOCK provides support for TCP and UDP non blocking mode socket operation for both outbound and listening connections.
HS FTP allows concurrent FTP session operation. The number of sessions is limited to 32 in the current version.
Customization
Hillstone Software provides additional services for customization, porting and integration of the library code to better suit the needs of your products