* @brief True if this is a remote connection to the kernel * (i.e. connected over a socket rather than by loading a library) *************************************************************/
| 154 | * (i.e. connected over a socket rather than by loading a library) |
| 155 | *************************************************************/ |
| 156 | bool Kernel::IsRemoteConnection() |
| 157 | { |
| 158 | return GetConnection() && GetConnection()->IsRemoteConnection() ; |
| 159 | } |
| 160 | |
| 161 | /************************************************************* |
| 162 | * @brief True if this is a direct connection to the kernel |
no test coverage detected