-
Pau Espin Pedrol authoredPau Espin Pedrol authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
SIP_parse.h 1.30 KiB
/******************************************************************************
* Copyright (c) 2000-2023 Ericsson Telecom AB
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
*
* Contributors:
* Gabor Szalai - initial implementation and initial documentation
* Gergely Futo
* Laszlo Skumat
* Pinter Norbert
* Oliver Ferenc Czerman
* Peter Balazs
* Koppány Csaba Béla
* Kulcsár Endre
* Szalai Zsolt
******************************************************************************/
// File: SIP_parse.h
// Rev: R17B
// Prodnr: CNL 113 319
// Reference: RFC3261, RFC2806, RFC2976, RFC3262, RFC3311, RFC3323,
// RFC3325, RFC3326, RFC3265, RFC3455, RFC4244
// IETF Draft draft-ietf-dip-session-timer-15.txt,
// IETF Draft draft-levy-sip-diversion-08.txt
//
#ifndef PARSE_HH
#define PARSE_HH
#define BUF_SIZE 1901 // 1300 by the SIP standard
extern int SIP_parse_lex(void);
extern int SIP_parse_debug;
int my_SIP_parse_input(char *buffer, int max_size);
extern int num_chars;
#endif