Used by the x25_circuit_query subroutine to return information about the circuit.
#define X25FLG_INCOMING_PACKET_SIZE 0x00000001 #define X25FLG_OUTGOING_PACKET_SIZE 0x00000002 #define X25FLG_INCOMING_THROUGHPUT_CLASS 0x00000004 #define X25FLG_OUTGOING_THROUGHPUT_CLASS 0x00000008 #define X25FLG_INCOMING_WINDOW_SIZE 0x00000010 #define X25FLG_OUTGOING_WINDOW_SIZE 0x00000020
struct cb_circuit_info_struct { unsigned long flags; unsigned short lcn; unsigned int incoming_packet_size; unsigned int outgoing_packet_size; unsigned int incoming_throughput_class; unsigned int outgoing_throughput_class; unsigned int incoming_window_size; unsigned int outgoing_window_size; } ;
The x25sdefs.h file.