Ejemplo n.º 1
0
struct msg *
dnode_req_recv_next(struct context *ctx, struct conn *conn, bool alloc)
{
	struct msg *msg;

	ASSERT(conn->dnode_client && !conn->dnode_server);
	return req_recv_next(ctx, conn, alloc);
}
Ejemplo n.º 2
0
static struct msg *
dnode_req_recv_next(struct context *ctx, struct conn *conn, bool alloc)
{
    ASSERT(conn->type == CONN_DNODE_PEER_CLIENT);
    return req_recv_next(ctx, conn, alloc);
}