Gets this DOF's runtime, which contains data about the internal runtime state of the DOF. It provides information about current connections, servers, and traffic statistics. After getting the DOFRuntime, use its functions to retrieve specific information. For example, the following lines of code would retrieve a list of all connections created by myDof: DOFRuntime runtime = DOF_GetRuntime (myDof); DOFConnectionList myConnections = DOFRuntime_CreateConnectionList (runtime); ... DOFConnectionList_Destroy(myConnections); See the functions of DOFRuntime for information about all data that can be retrieved.
|