Home | History | Annotate | Download | only in apps

Lines Matching defs:mbuf

389 	char *cbuf=NULL,*sbuf=NULL,*mbuf=NULL;
469 ((mbuf=OPENSSL_malloc(BUFSIZZ)) == NULL))
1121 mbuf_len = BIO_gets(fbio,mbuf,BUFSIZZ);
1123 while (mbuf_len>3 && mbuf[3]=='-');
1130 mbuf_len = BIO_gets(fbio,mbuf,BUFSIZZ);
1131 if (strstr(mbuf,"STARTTLS"))
1134 while (mbuf_len>3 && mbuf[3]=='-');
1147 BIO_read(sbio,mbuf,BUFSIZZ);
1156 BIO_gets(fbio,mbuf,BUFSIZZ);
1163 mbuf_len = BIO_gets(fbio,mbuf,BUFSIZZ);
1164 if (strstr(mbuf,"STARTTLS"))
1167 while (mbuf_len>3 && mbuf[0]!='.');
1185 mbuf_len = BIO_gets(fbio,mbuf,BUFSIZZ);
1187 while (mbuf_len>3 && mbuf[3]=='-');
1200 seen = BIO_read(sbio,mbuf,BUFSIZZ);
1201 mbuf[seen] = 0;
1202 while (!strstr(mbuf, "<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'"))
1204 if (strstr(mbuf, "/stream:features>"))
1206 seen = BIO_read(sbio,mbuf,BUFSIZZ);
1207 mbuf[seen] = 0;
1214 mbuf[0] = 0;
1263 BIO_printf(bio_err,"%s",mbuf);
1621 if (mbuf != NULL) { OPENSSL_cleanse(mbuf,BUFSIZZ); OPENSSL_free(mbuf); }