ACC X.25 Protocol User's Guide

X.25 Application Programming
ZX25SEND_INT (3X) — ACC X.25
Chapter 4128
ZxeX25_TBL_FULL (99) The X.25 routines maintain an
internal table for accessing remote
ZCOM nodes. This table has room to
access up to 20 different ZCOM nodes
(including the local node). This
request attempted to access the 21st
ZCOM remote node and the internal
table used had insufficient space to
save the routing data.
NOTES The calling program (or thread) must call zx25info before calling this
routine. In a multi-threaded application, each thread must make a
separate call to zx25info using a per-thread ZCOM X.25 access data
buffer zxip. The per-thread data buffer can then be used to call this
routine.
EXAMPLE
#include <zcom/zcomsys.h>
#include <zcom/zcomx25.h>
int ierr;
zx25info_type *zxi;
zaddr_type *vzaddr;
char ibuf[32]
int len;
if (ierr = zx25send_int (zxi, vzaddr, ibuf, len))) {
/* error return code */
}
else {
/* good return code */
}
FILES /opt/acc/include/zcom/zcomsys.h ZCOM system general include file,
containing data types, data
structures, constants, error codes,
masks, etc. Note that this must be the
first include file before any other
ZCOM include files.
/opt/acc/include/zcom/zcomx25.h ZCOM X.25 access data structure
declarations.
SEE ALSO zx25info(3x), zx25int_conf(3x)