public boolean isSocketInterceptorEnabled() {
   final SocketInterceptorConfig socketInterceptorConfig = ioService.getSocketInterceptorConfig();
   if (socketInterceptorConfig != null && socketInterceptorConfig.isEnabled()) {
     return true;
   }
   return false;
 }