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

Method isBase64

src/jlsrtp.cpp:34–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32// --------------- PRIVATE METHODS ----------------
33
34bool JLSRTP::isBase64(unsigned char c)
35{
36 return (isalnum(c) ||
37 (c == '+') ||
38 (c == '/'));
39}
40
41int JLSRTP::resetPseudoRandomState(std::vector<unsigned char> iv)
42{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected