mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
19 lines
465 B
C
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;
|
|
}
|