software/ protocol module

Protocol Module, Ebay Auction Software and Datagrid Dataset Products

Reviews 1-10 of 10
HS CRYPTO 1.0 C Source Library
HS FTP Client 1.0 C Source Library
HS NTP 1.0 C Source Library
HS POP3 Lite 1.0 C Source Library
By Hillstone Software

HS Crypto is a software library in C (supplied with full source code) which offers a programmer an API to several data encryption / decryption algorithms. Implemented methods include the use of 2 either pre-defined or dynamically generated translation tables, an XOR-based stream cipher method with random dynamic key, plus the library includes RFC1321 MD5 Message Digest Algorithm



By Hillstone Software

HS FTP is a software library in C (supplied with full source code) which implements the client side of the File Transfer Protocol over TCP socket layer according to RFC 959. The library allows a user application to connect to remote FTP servers, traverse server directory structure and send and receive files. The HS FTP protocol module supports passive mode data connections, user / password authentication and a number of commonly used FTP commands



By Hillstone Software

HS NTP is a software library in C (supplied with full source code) which implements the client side of Network Time Protocol (NTP) over UDP socket layer according to RFC1769 and RFC1305. HS NTP Library allows a user application to synchronise local system time to remote NTP server time.



By Hillstone Software

HS POP3 Lite is a software library in C (supplied with full source code) which implements the client side of Post Office Protocol Version 3 (POP3) over TCP socket layer according to RFC 1939. Among other features, the library supports user authentication, reception of basic internet headers and text, message deletion and statistics. HS POP3 Library incorporates the necessary state machine, transparency procedures, server response processing etc.



 
HS SMTP LITE C Source Library

HS SMTP Lite
By Hillstone Software

HS SMTP LITE is a software library in C (supplied with full source code) which implements the client side of Simple Mail Transfer Protocol (SMTP) over TCP socket layer according to RFC 821. Support for transfer of basic message header and text is provided To send a text email message to any address on the internet, the user application calls a single function HsSmtpSendMail, specifying mail server name or IP address, sender address, recipient address, message text buffer and length, subject, cc and an event callback function to use for reporting of operation result and server errors. HS SMTP library then resolves the server name, connects to it and transmits the message according to SMTP RFC 821 protocol. HS SMTP Library incorporates the necessary state machine, transparency procedures, and server response processing required to comply to a simple and robust SMTP client implementation. Modular design makes it easy to port HS SMTP protocol module to any environment. HS SMTP internally at a lower layer interfaces to HS Sock library which provides TCP transport services. User application need not worry about Winsock - HS SMTP does all transmission, reception and event handling over socket layer. Features -SMTP Client Operation -Server name resolution -Supports up to 5 contexts -Message Header Transfer -Message Text Transfer -Asynchonous Operation Customization: Hillstone Software provides additional services for customization, porting and integration of the library code to better suit the needs of your products API summary -HsSmtpInit -HsSmtpDestroy -HsSmtpTick -HsSmptSendMail -HsSmptAbortMail



HS FTP Client 1.0 C Source Library

HS FTP Client C Source Library
By Hillstone Software

HS FTP is a software library in C (supplied with full source code) which implements the client side of the File Transfer Protocol over TCP socket layer according to RFC 959. The library allows a user application to connect to remote FTP servers, traverse server directory structure and send and receive files. The HS FTP protocol module supports passive mode data connections, user / password authentication and a number of commonly used FTP commands: USER, PASS, TYPE, PASV, LIST, CWD, RETR, STOR Features - FTP Client RFC 959 operation - Server name resolution - Concurrent FTP client sessions - Passive mode, firewall friendly - User / password authentication - Asynchronous Operation what is supplied after you purchase the product? - HS FTP Library binaries (Win32 library) - HS FTP full source code in C with Visual C workspace and project files - Binaries and full C source code of HS SOCK module used by HS FTP for Win32 TCP/IP socket layer communications - HS FTP Demo Application binaries, C source code, project workspace - HS FTP User Manual which documents in detail complete library API To connect to remote FTP server, the user application calls HsFtpCliConnect, supplying connection parameters, such as remote FTP server name or IP address, username and password for authentication etc and 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 user event callback function with HS_FTPCLI_USR_EV_LOGGEDIN event. The user application can now request remote FTP server directory listing using HsFtpCliList function, change directory HsFtpCliChdir, transfer files with HsFtpCliSendFile and HsFtpCliGetFile. More information is at http://www.hillstone-software/hs_ftp_details.h



HS NTP 1.0 C Source Library

HS NTP C Source Library
By Hillstone Software

HS NTP is a software library in C (supplied with full source code) which implements the client side of Network Time Protocol (NTP) over UDP socket layer according to RFC1769 and RFC1305. HS NTP Library allows a user application to synchronise local system time to remote NTP server time. First user application calls HS NTP initialisation function supplying pointers to callback functions in user code for timer management and for reporting NTP events to user. To obtain time difference between local system and remote NTP server, the user application calls HsNtpGetTime function, specifying NTP server name or IP address and source UDP port to use. HS NTP library then resolves the server name, formats and sends NTP time request packet according to RFC1305 and RFC1769 standard. Once HS NTP has received NTP time reply from NTP server it analyses the reply and reports the resulting time difference to user application via callback function. The parameters to this event callback contain the offset value in seconds necessary to apply to local clock in order to synchronize it to the time at remote NTP server. Modular design makes it easy to port HS NTP protocol module to any environment. HS NTP internally at a lower layer interfaces to HS Sock library which provides UDP transport services. User application need not worry about Winsock - HS NTP does all transmission, reception and event handling over socket layer.


HS POP3 Lite 1.0 C Source Library

HS POP3 Lite
By Hillstone Software

HS POP3 Lite is a software library in C (supplied with full source code) which implements the client side of Post Office Protocol Version 3 (POP3) over TCP socket layer according to RFC 1939. Among other features, the library supports user authentication, reception of basic internet headers and text, message deletion and statistics First user application calls HS POP3 initialisation function supplying pointers to callback functions in user code for memory amd timer management and for reporting POP3 events to user. To receive email messages from any POP3 RFC1939 compliant server, the user application calls HsPop3GetMail function, specifying mail server name or IP address and login user name and password. HS POP3 library then resolves the server name, connects to it, receives and message scan list. according to RFC1939 standard. Once HS POP3 has a unique message ID from the server, it reports this message ID to user application via callback function. The user application returns a specific value if it wants to receive this message. At this point HS POP3 will request necessary amount of memory for the message and will receive complete message into the buffer. Once message is received, the user code is notified with a callback and a message structure, containing full message pointer, message length, start of text pointer, length of headers and separate parsed out header information: from field, date field, message id field and subject field. This process is repeated until all messages are received. HS POP3 library can also delete messages from server if this option is specified. HS POP3 Library incorporates the necessary state machine, transparency procedures, and server response processing required to comply to a simple and robust POP3 client implementation. Modular design makes it easy to port HS POP3 protocol module to any environment. HS POP3 internally at a lower layer interfaces to HS Sock library which provides TCP transport services.


HS X.25 (with RFC1613 XOT) C Library

HS X.25 (with RFC1613 XOT) C Source Library
By Hillstone Software

HS X.25 is a software library in C (supplied with full source code) which implements ITU-T recommendation X.25 - Interface between Data Terminal Equipment (DTE) and Data Circuit-terminating Equipment (DCE) for terminals operating in the packet mode and connected to public data networks by dedicated circuit. HS X.25 incliudes RFC1613 Cisco XOT protocol for X.25 over TCP applicaitions. HS X.25 internally at a lower layer interfaces to HsDL library. HsDL library is Data Link layer abstraction. When HS X.25 is ported into environment with LAPB or LAPD as data link layer, only HsDL module needs to change. HsDL links directly to HsSock module (also included in this package) - Winsock interface component that provides reliable TCP transport services similar to LAPB / LAPD / HDLC. HsX25 as provided to customer may be used immediately in X.25 over TCP (XOT) solution or it may be used with traditional LAPB or LAPD in which case only HsDL will need to be modified. Main Features: * DTE operation * DCE operation * 4095 VCs * incoming and outgoing SVC supported * Built-in RFC1613 XOT module * X.25 version: ITU-T (formerly CCITT) 10/96 * max packet lenght 1024 * all X.25 timer and counters implemented * interrupt packets supported * VC Statistics * Trace Function * User Facilities * Call User Data * M bit, D bit and Q bit procedures supported * Configurable window and packet sizes * Configurable incoming and outgoing LCN ranges HsX25 as provided to customer may be used immediately in X.25 over TCP (XOT) solution or it may be used with traditional LAPB or LAPD in which case only HsDL will need to be modified.


HS XMODEM C Source Library 1.1

HS XMODEM C Source Library
By Hillstone Software

HS XMODEM is a software library in C (supplied with full source code) that provides a programmer with the off-the-shelf support for XMODEM protocol data transfer capability. Support for both sender and receiver are provided. Other features include 1024 block size vs 128, CRC vs checksum, configurable timers and retries * HOW IT WORKS: When user application initlialises HsXmodem library, it provides interface callbacks for the services used by Xmodem protocol module: timer management, serial transmission and reception, memory management, event callbacks. This architecture makes it easy to port Xmodem protocol module to any environment Xmodem module handles all protocol information flow, error recovery, acknowledgements, timeouts and so on. When it is appropriate to send next block of data Hs Xmodem will get next memory block from user application. Similarly, when data has been received Hs Xmodem module will get the next block of memory from user application to store data into As a backup or an alternative to TFTP, Xmodem is often used in embedded devices and appliances for the purpose of software or configuration upgrade or retrieval. * FEATURES: - Xmodem Sender and Receiver - 128 and 1024 block size - Checksum and CRC option - Configurable timers - Configurable number of retries * HOW TO BUY HS XMODEM LIBRARY: You can purchase the library online using credit card payment at: http://www.hillstone-software.com/hs xmodem_buy.htm The library currently costs EUR 99.00 for unlimited user license. Once the purchase is made you will receive download link by email to download full product deliverables, which include: - HS XMODEM library binaries. (Win32 static library) - HS XMODEM library full source code in C with MS Visual C project workspace - HS XMODEM Demo Application binaries, full source code and MS Visual C project workspace. - HS XMODEM library user manual, which documents in detail complete library API.



© 2003-2007 Serial Download

Serial Download periodically updates pricing and product information from third-party sources,
so some information may be slightly out-of-date. You should confirm all information before relying on it.