sip/README.md
This SIP stack for RFC:
https://datatracker.ietf.org/doc/html/rfc3261
Stack:
Parser optimized for fast parsingParser by default parses set of headers that are mostly present in messages. From,To,Via,Cseq,Content-Type,Content-Length...
This headers are accessible via fast reference msg.Via(), msg.From()...
This can be configured using WithHeadersParsers and reducing this to increase performance.
SIP stack in case needed will use fast reference and lazy parsing.