Query: xpaclient
OS: debian
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
xpaclient(3) SAORD Documentation xpaclient(3)NAMEXPAClient - The XPA Client-side Programming InterfaceSYNOPSISA description of the XPA client-side programming interface.DESCRIPTIONIntroduction to XPA Client Programming Sending/receiving data to/from an XPA access point is easy: you generally only need to call the XPAGet() or XPASet() subroutines. #include <xpa.h> int XPAGet(XPA xpa, char *template, char *paramlist, char *mode, char **bufs, int *lens, char **names, char **messages, int n); int XPASet(XPA xpa, char *template, char *paramlist, char *mode, char *buf, int len, char **names, char **messages, int n); int XPAInfo(XPA xpa, char *template, char *paramlist, char *mode, char **names, char **messages, int n); int XPAAccess(XPA xpa, char *template, char *paramlist, char *mode, char **names, char **messages, int n); int XPAGetFd(XPA xpa, char *template, char *paramlist, char *mode, int *fds, char **names, char **messages, int n); int XPASetFd(XPA xpa, char *template, char *paramlist, char *mode, int fd, char **names, char **messages, int n); XPA XPAOpen(char *mode); void XPAClose(XPA xpa); int XPANSLookup(XPA xpa, char *template, char *type, char ***classes, char ***names, char ***methods, char ***infos); Introduction To use the XPA application programming interface, a software developer generally will include the xpa.h definitions file: #include <xpa.h> in the software module that defines or accesses an XPA access point and then will link against the libxpa.a library: gcc -o foo foo.c libxpa.a XPA has been compiled using both C and C++ compilers. Client communication with XPA public access points generally is accomplished using XPAGet() or XPASet() within a program (or xpaget and xpaset at the command line). Both routines require specification of the name of the access point. If a template is used to specify the access point name (e.g., "ds9*"), then communication will take place with all servers matching that template.SEE ALSOSee xpa(7) for a list of XPA help pages version 2.1.14 June 7, 2012 xpaclient(3)
Related Man Pages |
---|
xpagetfd(3) - debian |
xpaget(3) - debian |
xpainfonew(3) - debian |
xpaserver(3) - debian |
xpaopen(3) - debian |
Similar Topics in the Unix Linux Community |
---|
Reading a file into a C++ script |
Invocation Programming Language 1.0.1 (Default branch) |
C Programming in Unix |
Annoying whitespace after a char string... |
What is Unix System Programming??? |