//////////////////////// \brief InterfaceAccept (interface) - Accept connections on an interface Accept a pending connection on an interface and return a new MessageEndpoint \param interface (handle_t) Handle ID of the interface \return Handle ID of endpoint on success, 0 when no pending connections, negative error code on failure ////////////////////////
| 46 | /// \return Handle ID of endpoint on success, 0 when no pending connections, negative error code on failure |
| 47 | ///////////////////////////// |
| 48 | inline handle_t InterfaceAccept(const handle_t interface){ |
| 49 | return syscall(SYS_INTERFACE_ACCEPT, interface); |
| 50 | } |
| 51 | |
| 52 | ///////////////////////////// |
| 53 | /// \brief InterfaceConnect (path) - Open a connection to an interface |