Home | History | Annotate | Download | only in net

Lines Matching defs:lhs

88 	char	*lhs;			/* normally ".ns" */
155 free(ctx->lhs);
175 if (ctx->lhs)
176 free(ctx->lhs);
225 if (ctx->lhs)
226 len += strlen(ctx->lhs) + ((ctx->lhs[0] != '.') ? 1 : 0);
237 /* Only append lhs if it isn't empty. */
238 if (ctx->lhs && ctx->lhs[0] != '\0' ) {
239 if (ctx->lhs[0] != '.')
241 strlcat(bindname, ctx->lhs, sizeof(bindname));
303 * -1 on failure. On failure, it might leave values in ctx->lhs
324 ctx->lhs = strdup(DEF_LHS);
326 if (ctx->lhs && ctx->rhs)
333 ctx->lhs = NULL;
361 if (strcasecmp(key, "lhs") == 0 ||
363 which = (strcasecmp(key, "lhs") == 0)
364 ? &ctx->lhs : &ctx->rhs;