Lines Matching defs:line
180 512 - 8, /* Max line len - strlen("AUTH ") - 1 space - crlf */
209 char *line, size_t len, int *resp)
216 if(len < 4 || !ISDIGIT(line[0]) || !ISDIGIT(line[1]) || !ISDIGIT(line[2]))
223 if(line[3] == ' ' || len == 5) {
228 memcpy(tmpline, line, (len == 5 ? 5 : 3));
236 else if(line[3] == '-' &&
886 const char *line = Curl_dyn_ptr(&smtpc->pp.recvbuf);
901 line += 4;
905 if(len >= 8 && !memcmp(line, "STARTTLS", 8))
909 else if(len >= 4 && !memcmp(line, "SIZE", 4))
913 else if(len >= 8 && !memcmp(line, "SMTPUTF8", 8))
917 else if(len >= 5 && !memcmp(line, "AUTH ", 5)) {
921 line += 5;
924 /* Loop through the data line */
931 (*line == ' ' || *line == '\t' ||
932 *line == '\r' || *line == '\n')) {
934 line++;
942 for(wordlen = 0; wordlen < len && line[wordlen] != ' ' &&
943 line[wordlen] != '\t' && line[wordlen] != '\r' &&
944 line[wordlen] != '\n';)
948 mechbit = Curl_sasl_decode_mech(line, wordlen, &llen);
952 line += wordlen;
1036 char *line = Curl_dyn_ptr(&data->conn->proto.smtpc.pp.recvbuf);
1048 result = Curl_client_write(data, CLIENTWRITE_BODY, line, len);
1415 previous line of the email or the CRLF of the DATA command when there
1499 /* Initial data character is the first character in line: it is implicitly
1826 they are sent as CRLF.. instead, as a . on the beginning of a line will