Lines Matching refs:bp
75 BIO *bp, int ind);
77 STACK_OF(GENERAL_SUBTREE) *trees, BIO *bp,
79 static int print_nc_ipadd(BIO *bp, ASN1_OCTET_STRING *ip);
163 BIO *bp, int ind)
167 bp, ind, "Permitted");
169 bp, ind, "Excluded");
175 BIO *bp, int ind, const char *name)
180 BIO_printf(bp, "%*s%s:\n", ind, "", name);
183 BIO_printf(bp, "%*s", ind + 2, "");
185 print_nc_ipadd(bp, tree->base->d.ip);
187 GENERAL_NAME_print(bp, tree->base);
188 BIO_puts(bp, "\n");
193 static int print_nc_ipadd(BIO *bp, ASN1_OCTET_STRING *ip)
199 BIO_puts(bp, "IP:");
201 BIO_printf(bp, "%d.%d.%d.%d/%d.%d.%d.%d",
205 BIO_printf(bp, "%X", p[0] << 8 | p[1]);
208 BIO_puts(bp, "/");
210 BIO_puts(bp, ":");
213 BIO_printf(bp, "IP Address:<invalid>");