Updated: October 28, 2024 |
Open a name to connect to a server
#include <sys/iofunc.h> #include <sys/dispatch.h> int name_open( const char * name, int flags );
For more information about the _NTO_COF_* flags, see ConnectAttach().
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The name_open() function opens name to connect to the server that registered that name. No ordering is guaranteed when accessing resources on other nodes. There's also no guarantee that the client will end up talking to the server it thinks it's connecting to; another server process could run before the server the client is expecting to talk to and use the name in name. If this is a concern, your server should call resmgr_attach() instead of name_attach() and possibly configure a security policy.
You can make the connection more secure by setting the _NAME_FLAG_COF_INSECURE and _NAME_FLAG_COF_NOEVENT flags. For more information, see the descriptions of the corresponding ConnectAttach() flags.
A nonnegative integer representing a side-channel connection ID or coid (see ConnectAttach()), or -1 if an error occurred (errno is set).
See name_attach().
Safety: | |
---|---|
Cancellation point | Yes |
Interrupt handler | No |
Signal handler | Yes |
Thread | Yes |