Home | History | Annotate | Download | only in apps

Lines Matching defs:mbuf

426 	char *cbuf=NULL,*sbuf=NULL,*mbuf=NULL;
509 ((mbuf=OPENSSL_malloc(BUFSIZZ)) == NULL))
1188 mbuf_len = BIO_gets(fbio,mbuf,BUFSIZZ);
1190 while (mbuf_len>3 && mbuf[3]=='-');
1197 mbuf_len = BIO_gets(fbio,mbuf,BUFSIZZ);
1198 if (strstr(mbuf,"STARTTLS"))
1201 while (mbuf_len>3 && mbuf[3]=='-');
1214 BIO_read(sbio,mbuf,BUFSIZZ);
1223 BIO_gets(fbio,mbuf,BUFSIZZ);
1230 mbuf_len = BIO_gets(fbio,mbuf,BUFSIZZ);
1231 if (strstr(mbuf,"STARTTLS"))
1234 while (mbuf_len>3 && mbuf[0]!='.');
1252 mbuf_len = BIO_gets(fbio,mbuf,BUFSIZZ);
1254 while (mbuf_len>3 && mbuf[3]=='-');
1267 seen = BIO_read(sbio,mbuf,BUFSIZZ);
1268 mbuf[seen] = 0;
1269 while (!strstr(mbuf, "<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'"))
1271 if (strstr(mbuf, "/stream:features>"))
1273 seen = BIO_read(sbio,mbuf,BUFSIZZ);
1274 mbuf[seen] = 0;
1281 mbuf[0] = 0;
1330 BIO_printf(bio_err,"%s",mbuf);
1688 if (mbuf != NULL) { OPENSSL_cleanse(mbuf,BUFSIZZ); OPENSSL_free(mbuf); }