/**
  * Returns servers, which are queried for books.
  * @return ExternalServerPool pool of authorized and answering ones
  */
 public static function activeServerPool()
 {
     $pool = new self();
     $pool->loadActive();
     return $pool;
 }