diff options
author | Max Kellermann <max@duempel.org> | 2014-12-14 15:38:09 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-12-14 15:38:09 +0100 |
commit | 7fa1a84ec37ba6e891d2eb9d557cf3ddfb902023 (patch) | |
tree | 2709dad81558c4c2a85576bb05ac365b5c6b3876 /src/lib | |
parent | ab4bb26a0aeac99a7ea5aa9fdd93d379bf3c054d (diff) | |
download | mpd-7fa1a84ec37ba6e891d2eb9d557cf3ddfb902023.tar.gz mpd-7fa1a84ec37ba6e891d2eb9d557cf3ddfb902023.tar.xz mpd-7fa1a84ec37ba6e891d2eb9d557cf3ddfb902023.zip |
lib/nfs/Connection: move code to method InternalClose()
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/nfs/Connection.cxx | 15 | ||||
-rw-r--r-- | src/lib/nfs/Connection.hxx | 5 |
2 files changed, 17 insertions, 3 deletions
diff --git a/src/lib/nfs/Connection.cxx b/src/lib/nfs/Connection.cxx index c62b11acb..433d49ecf 100644 --- a/src/lib/nfs/Connection.cxx +++ b/src/lib/nfs/Connection.cxx @@ -331,12 +331,22 @@ DummyCallback(int, struct nfs_context *, void *, void *) { } +inline void +NfsConnection::InternalClose(struct nfsfh *fh) +{ + assert(GetEventLoop().IsInside()); + assert(context != nullptr); + assert(fh != nullptr); + + nfs_close_async(context, fh, DummyCallback, nullptr); +} + void NfsConnection::Close(struct nfsfh *fh) { assert(GetEventLoop().IsInside()); - nfs_close_async(context, fh, DummyCallback, nullptr); + InternalClose(fh); ScheduleSocket(); } @@ -424,8 +434,7 @@ NfsConnection::OnSocketReady(unsigned flags) #endif while (!deferred_close.empty()) { - nfs_close_async(context, deferred_close.front(), - DummyCallback, nullptr); + InternalClose(deferred_close.front()); deferred_close.pop_front(); } diff --git a/src/lib/nfs/Connection.hxx b/src/lib/nfs/Connection.hxx index e63782931..93bb4e236 100644 --- a/src/lib/nfs/Connection.hxx +++ b/src/lib/nfs/Connection.hxx @@ -187,6 +187,11 @@ private: void DestroyContext(); /** + * Wrapper for nfs_close_async(). + */ + void InternalClose(struct nfsfh *fh); + + /** * Invoke nfs_close_async() after nfs_service() returns. */ void DeferClose(struct nfsfh *fh); |