GLOBUS_XIO_API_ASSIST (3) Linux Manual Page
XIO Examples – Help understanding the globus_xio api. Stack ConstructionThe driver stack that is used for a given XIO handle is constructed using a globus_xio_stack_t. Each driver is loaded by name and pushed onto a stack. Stack setup example: // First load the drivers globus_xio_driver_load("tcp", &tcp_driver); globus_xio_driver_load("gsi", &gsi_driver); //build the stack globus_xio_stack_init(&stack); globus_xio_stack_push_driver(stack, tcp_driver, NULL);…
