MCPcopy Create free account
hub / github.com/SIPp/sipp / internal_hdrend

Function internal_hdrend

src/sip_parser.cpp:493–503  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

491}
492
493static const char* internal_hdrend(const char* ptr)
494{
495 const char *p = ptr;
496 while (*p) {
497 if (p[0] == '\r' && p[1] == '\n' && (p[2] != ' ' && p[2] != '\t')) {
498 return p;
499 }
500 ++p;
501 }
502 return p;
503}
504
505static const char* internal_find_param(const char* ptr, const char* name)
506{

Callers 1

get_call_idFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected