1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-29 09:20:45 +00:00
falk-werner_webfuse-provider/lib/webfuse/adapter/impl/operation/context.c
2020-04-04 23:27:34 +02:00

19 lines
465 B
C

#include "webfuse/adapter/impl/operation/context.h"
#include "webfuse/adapter/impl/session_manager.h"
#include "webfuse/adapter/impl/session.h"
#include <stddef.h>
struct wf_jsonrpc_proxy * wf_impl_operation_context_get_proxy(
struct wf_impl_operation_context * context)
{
struct wf_jsonrpc_proxy * proxy = NULL;
struct wf_impl_session * session = context->session;
if (NULL != session)
{
proxy = session->rpc;
}
return proxy;
}