Installation
INTER-TEL
®
AXXESS
®
MANUAL VERSION 11.0 – May 2008
Page
3-236
Client Requirements
C. CLIENT REQUIREMENTS
16.4 The TCP/IP server requires the following:
• An IP address for the client
• A modem with speed greater than or equal to 28,800 connected to a serial port
D. CLIENT INSTALLATION
1. Install the Remote Access Server (RAS).
2. Using DB Programming, store the information about the account on the server that this
client uses when it dials in: server telephone number and server account (domain, user-
name, and password).
E. PROGRAMMING
16.5 Within the Voice Processing software, to open a direct network connection to a remote
address, you call the open_connection() procedure:
16.6 With this signature, a direct network connection is tried. Your socket is a direct network
connection. The resulting socket can be used as-is in the Voice Processing application; no fur-
ther code changes are necessary.
socket_status_t open_connection (void);
// Prepare a socket connection to a remote address.
remote_io = new communication_socket_t;
socket_status_t status = remote_io->initialize (ip_address, port);
if (status == SOCKET_STATUS_SUCCESS) {
status = remote_io->open_connection ();
}