Coverage Report

Created: 2025-07-09 06:29

/src/opensips/parser/parser_f.c
Line
Count
Source
1
/*
2
 * parser helper  functions
3
 *
4
 * Copyright (C) 2001-2003 FhG Fokus
5
 *
6
 * This file is part of opensips, a free SIP server.
7
 *
8
 * opensips is free software; you can redistribute it and/or modify
9
 * it under the terms of the GNU General Public License as published by
10
 * the Free Software Foundation; either version 2 of the License, or
11
 * (at your option) any later version
12
 *
13
 * opensips is distributed in the hope that it will be useful,
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 * GNU General Public License for more details.
17
 *
18
 * You should have received a copy of the GNU General Public License
19
 * along with this program; if not, write to the Free Software
20
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
21
 */
22
23
24
#include  "parser_f.h"
25
#include "../ut.h"
26
27
/* returns pointer to next line or after the end of buffer */
28
char* eat_line(char* buffer, unsigned int len)
29
15.4k
{
30
15.4k
  char* nl;
31
32
  /* jku .. replace for search with a library function; not conforming
33
      as I do not care about CR
34
  */
35
15.4k
  nl=(char *)q_memchr( buffer, '\n', len );
36
15.4k
  if ( nl ) {
37
14.5k
    if ( nl + 1 < buffer+len)  nl++;
38
14.5k
    if (( nl+1<buffer+len) && * nl=='\r')  nl++;
39
14.5k
  } else  nl=buffer+len;
40
15.4k
  return nl;
41
15.4k
}
42