Tests can declare this function and use it to fetch the socket FD's for links managed by the `SocketManager`. Without explicitly declaring this function, it is not visible. This is the preferred behavior as we do not want applications to have easy access to managed FD's.
| 1711 | // behavior as we do not want applications to have easy access to |
| 1712 | // managed FD's. |
| 1713 | Option<int_fd> get_persistent_socket(const UPID& to) |
| 1714 | { |
| 1715 | return socket_manager->get_persistent_socket(to); |
| 1716 | } |
| 1717 | |
| 1718 | |
| 1719 | Option<int_fd> SocketManager::get_persistent_socket(const UPID& to) |