diff options
author | Michael Adam <obnox@samba.org> | 2010-01-23 00:05:15 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2010-02-12 23:12:12 +0100 |
commit | e4af0bc5af2c3ee025ca7fac251c3672ba2c8dd5 (patch) | |
tree | 94d1da2ca88ee61e272504d443427e7ee690e954 /source3/lib/ctdbd_conn.c | |
parent | 8e306b51b79d3dacd68be9f13aa8455e2eb4c03f (diff) | |
download | samba-e4af0bc5af2c3ee025ca7fac251c3672ba2c8dd5.tar.gz samba-e4af0bc5af2c3ee025ca7fac251c3672ba2c8dd5.tar.xz samba-e4af0bc5af2c3ee025ca7fac251c3672ba2c8dd5.zip |
s3:ctdb_conn: add ctdbd_conn_get_fd() to get the fd out of the ctdb connection
Michael
Diffstat (limited to 'source3/lib/ctdbd_conn.c')
-rw-r--r-- | source3/lib/ctdbd_conn.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/lib/ctdbd_conn.c b/source3/lib/ctdbd_conn.c index 743594d43b..6b50009e00 100644 --- a/source3/lib/ctdbd_conn.c +++ b/source3/lib/ctdbd_conn.c @@ -519,6 +519,11 @@ struct messaging_context *ctdb_conn_msg_ctx(struct ctdbd_connection *conn) return conn->msg_ctx; } +int ctdbd_conn_get_fd(struct ctdbd_connection *conn) +{ + return packet_get_fd(conn->pkt); +} + /* * Packet handler to receive and handle a ctdb message */ |