MPIControlAddress
Definition
|
typedef struct MPIControlAddress {
long number; /* controller number */
union {
void *mapped; /* memory address */
unsigned long ioPort; /* I/O port number */
const char *device; /* device driver name */
struct {
const char *name; /* image file name */
MPIControlFileType type; /* image file type */
} file;
struct {
const char *server; /* IP address: host.domain.com */
long port; /* socket number */
} client;
} type;
} MPIControlAddress;
|
|
Change History: Modified in the 03.03.00 |
Description
MPIControlAddress is a structure
that specifies the location of the controller that to be accessed
when mpiControlCreate(...) is called. Please refer to the documentation
for mpiControlCreate(...) to see how to use this structure.
|
number |
The controller number in the computer |
type |
A union that holds information about controllers on non-local computers. |
|
See Also
MPIControl | MPIControlType | mpiControlCreate
|