summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Graf <tgraf@redhat.com>2012-11-06 17:36:53 +0100
committerThomas Graf <tgraf@redhat.com>2012-11-06 17:36:53 +0100
commitb25f26b896de785b9aecf871222d1762de800dbc (patch)
treebe658c4fbb71219ffc875f373687862d2b93185d
parent65f97deb6342310f212e88d7095d2b26cd53e89b (diff)
downloadlibnl-b25f26b896de785b9aecf871222d1762de800dbc.tar.gz
socket: document nl_socket_get_fd()
-rw-r--r--lib/socket.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/socket.c b/lib/socket.c
index 724fb7a..0335f07 100644
--- a/lib/socket.c
+++ b/lib/socket.c
@@ -472,6 +472,15 @@ void nl_socket_set_peer_groups(struct nl_sock *sk, uint32_t groups)
* @{
*/
+/**
+ * Return the file descriptor of the backing socket
+ * @arg sk Netlink socket
+ *
+ * Only valid after calling nl_connect() to create and bind the respective
+ * socket.
+ *
+ * @return File descriptor or -1 if not available.
+ */
int nl_socket_get_fd(const struct nl_sock *sk)
{
return sk->s_fd;