Lines Matching defs:pctx
30 struct cli_protocol *pctx;
33 pctx = talloc_get_type(cctx->protocol_ctx, struct cli_protocol);
34 if (!pctx) return EINVAL;
37 ret = sss_packet_new(pctx->creq, 0,
38 sss_packet_get_cmd(pctx->creq->in),
39 &pctx->creq->out);
45 sss_packet_set_error(pctx->creq->out, err);
71 struct cli_protocol *pctx;
74 pctx = talloc_get_type(cctx->protocol_ctx, struct cli_protocol);
75 if (!pctx) return EINVAL;
78 ret = sss_packet_new(pctx->creq, 0,
79 sss_packet_get_cmd(pctx->creq->in),
80 &pctx->creq->out);
85 ret = sss_cmd_empty_packet(pctx->creq->out);
90 sss_packet_set_error(pctx->creq->out, EOK);
107 struct cli_protocol *pctx;
118 pctx = talloc_get_type(cctx->protocol_ctx, struct cli_protocol);
119 if (!pctx) return EINVAL;
121 pctx->cli_protocol_version = NULL;
128 pctx->cli_protocol_version = &cli_protocol_version[0];
130 sss_packet_get_body(pctx->creq->in, &req_body, &req_blen);
139 pctx->cli_protocol_version = &cli_protocol_version[i];
148 ret = sss_packet_new(pctx->creq, sizeof(uint32_t),
149 sss_packet_get_cmd(pctx->creq->in),
150 &pctx->creq->out);
154 sss_packet_get_body(pctx->creq->out, &body, &blen);
156 protocol_version = (pctx->cli_protocol_version != NULL)
157 ? pctx->cli_protocol_version->version : 0;