Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
f8b2d4d
add initial heuristic detection for SIP packets
sorooshm78 Nov 15, 2025
07ca6b7
add comment
sorooshm78 Nov 16, 2025
f4fba28
refactor move helper methods to private, keep public API minimal
sorooshm78 Nov 16, 2025
d18abd0
use function dissectSipHeuristic
sorooshm78 Nov 17, 2025
6c6acda
Remove unused #include <iostream>
sorooshm78 Nov 17, 2025
2f2cc66
move the implementation to SipLayer.cpp
sorooshm78 Nov 29, 2025
09cb3f9
Merge branch 'dev' into add-sip-heuristic
sorooshm78 Nov 29, 2025
8362e31
Merge branch 'dev' into add-sip-heuristic
sorooshm78 Dec 2, 2025
dfc161c
refactor: use SipRequestFirstLine and SipResponseFirstLine static par…
sorooshm78 Dec 2, 2025
9f5c52d
Remove unused helper functions
sorooshm78 Dec 2, 2025
29063ca
Merge branch 'dev' into add-sip-heuristic
sorooshm78 Dec 7, 2025
fdae169
Revert add-sip-heuristic to match dev
sorooshm78 Dec 7, 2025
86eca5f
Add heuristic SIP message type detection in dissectSipHeuristic
sorooshm78 Dec 10, 2025
0e57e98
Merge branch 'dev' into add-sip-heuristic
sorooshm78 Dec 10, 2025
718582b
Resolve conflict
sorooshm78 Dec 10, 2025
c36d86b
add parameter and return descriptions to SIP parsing functions
sorooshm78 Dec 10, 2025
605d700
fix(spelling): correct "heristic" → "heuristic"
sorooshm78 Dec 10, 2025
4e1ef25
remove unnecessary blank line in SipLayer heuristic check
sorooshm78 Dec 10, 2025
7b1f3e5
Change data parameter to const uint8_t* in dissectSipHeuristic
sorooshm78 Dec 11, 2025
e8c6e61
style: trim trailing whitespace (fix CI)
sorooshm78 Dec 11, 2025
140eab5
Fix doxygen fails for CI
sorooshm78 Dec 11, 2025
56aaa9a
style: apply clang-format for CI
sorooshm78 Dec 11, 2025
8ac29ed
refactor SIP layer detection logic
sorooshm78 Dec 13, 2025
82c4f1c
Fix SIP version parsing bug and correctly extract version from reques…
sorooshm78 Dec 13, 2025
e72a1bf
Rename lineEnd to firstLineEnd
sorooshm78 Dec 13, 2025
508c436
Oops, fix mistake
sorooshm78 Dec 14, 2025
3c04854
replace c-style cast with reinterpret_cast for pointer conversion
sorooshm78 Dec 16, 2025
24f30ac
refactor
sorooshm78 Dec 20, 2025
b865994
style: apply clang-format for CI
sorooshm78 Dec 24, 2025
57409ae
Add SipContentBasedDetectionTest for SIP detection by content on non-…
sorooshm78 Dec 24, 2025
b34c27b
Add sip_non_default_port.pcap
sorooshm78 Dec 24, 2025
44997b9
Unify SIP first line parsing into single method
sorooshm78 Dec 27, 2025
1b24343
Return std::pair from parseFirstLine to separate validation from data
sorooshm78 Dec 28, 2025
3d926f6
Use std::move to optimize string assignment
sorooshm78 Dec 28, 2025
60da646
fix typo
sorooshm78 Dec 30, 2025
36962be
Refactor code
sorooshm78 Dec 31, 2025
3dc1140
Fixed mistake
sorooshm78 Dec 31, 2025
53e1198
refactor code
sorooshm78 Jan 1, 2026
65221a8
refactor code
sorooshm78 Jan 1, 2026
e5e6ac9
remove SipMethodShortMap
sorooshm78 Jan 1, 2026
c3a7b6d
refactor code
sorooshm78 Jan 2, 2026
0bfd050
Merge branch 'dev' into add-sip-heuristic
Dimi1010 Jan 2, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions Packet++/header/SipLayer.h
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,28 @@ namespace pcpp
return port == 5060 || port == 5061;
}

/// A static factory method that attempts to create a SIP layer from existing packet raw data
/// The method first checks whether the source or destination port matches the SIP protocol.
/// @param[in] data A pointer to the raw data
/// @param[in] dataLen Size of the data in bytes
/// @param[in] prevLayer A pointer to the previous layer
/// @param[in] packet A pointer to the Packet instance where layer will be stored in
/// @param[in] srcPort Source port number to check
/// @param[in] dstPort Dest port number to check
/// @return A newly allocated SIP layer of type request or response, or nullptr if parsing fails
static SipLayer* parseSipLayer(uint8_t* data, size_t dataLen, Layer* prevLayer, Packet* packet,
uint16_t srcPort, uint16_t dstPort);

/// A static factory method that attempts to create a SIP layer from existing packet raw data
/// This method does not check source or destination ports. Instead, it uses heuristics
/// to determine whether the data represents a SIP request or response.
/// @param[in] data A pointer to the raw data
/// @param[in] dataLen Size of the data in bytes
/// @param[in] prevLayer A pointer to the previous layer
/// @param[in] packet A pointer to the Packet instance where layer will be stored in
/// @return A newly allocated SIP layer of type request or response, or nullptr if parsing fails
static SipLayer* parseSipLayer(uint8_t* data, size_t dataLen, Layer* prevLayer, Packet* packet);

protected:
SipLayer(uint8_t* data, size_t dataLen, Layer* prevLayer, Packet* packet, ProtocolType protocol)
: TextBasedProtocolMessage(data, dataLen, prevLayer, packet, protocol)
Expand All @@ -137,6 +159,16 @@ namespace pcpp
{
return true;
}

private:
enum class SipParseResult
{
Unknown = 0,
Request = 1,
Response = 2,
};

static SipParseResult detectSipMessageType(const uint8_t* data, size_t dataLen);
};

class SipRequestFirstLine;
Expand Down Expand Up @@ -498,6 +530,15 @@ namespace pcpp
friend class SipRequestLayer;

public:
/// A structure containing parsed components from a SIP request first line.
/// All string fields are empty if parsing fails
struct SipFirstLineData
{
std::string method; ///< The SIP method (e.g., INVITE, REGISTER, BYE)
std::string uri; ///< The Request-URI destination
std::string version; ///< The SIP protocol version (e.g., SIP/2.0)
};

/// @return The SIP request method
SipRequestLayer::SipMethod getMethod() const
{
Expand Down Expand Up @@ -531,6 +572,13 @@ namespace pcpp
/// @return The parsed SIP method
static SipRequestLayer::SipMethod parseMethod(const char* data, size_t dataLen);

/// A static method for parsing the complete SIP request first line from raw data
/// @param[in] data The raw data containing the SIP request line
/// @param[in] dataLen The raw data length
/// @return A pair where first indicates success/failure, and second contains the parsed data.
/// If parsing fails, first is false and second contains empty strings
static std::pair<bool, SipFirstLineData> parseFirstLine(const char* data, size_t dataLen);

/// @return The size in bytes of the SIP request first line
int getSize() const
{
Expand Down
175 changes: 175 additions & 0 deletions Packet++/src/SipLayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,17 @@

namespace pcpp
{
constexpr uint32_t pack4(const char* data, size_t len)
{
return ((len > 0 ? static_cast<uint32_t>(data[0]) << 24 : 0) |
(len > 1 ? static_cast<uint32_t>(data[1]) << 16 : 0) |
(len > 2 ? static_cast<uint32_t>(data[2]) << 8 : 0) | (len > 3 ? static_cast<uint32_t>(data[3]) : 0));
}

constexpr uint32_t operator""_packed4(const char* str, size_t len)
{
return pack4(str, len);
}

const std::string SipMethodEnumToString[14] = { "INVITE", "ACK", "BYE", "CANCEL", "REGISTER",
"PRACK", "OPTIONS", "SUBSCRIBE", "NOTIFY", "PUBLISH",
Expand Down Expand Up @@ -103,6 +114,92 @@ namespace pcpp
}
}

SipLayer::SipParseResult SipLayer::detectSipMessageType(const uint8_t* data, size_t dataLen)
{
if (!data || dataLen < 3)
{
return SipLayer::SipParseResult::Unknown;
}

uint32_t key = pack4(reinterpret_cast<const char*>(data), dataLen);

switch (key)
{
case "INVI"_packed4: // INVITE
case "ACK "_packed4: // ACK
case "BYE "_packed4: // BYE
case "CANC"_packed4: // CANCEL
case "REGI"_packed4: // REGISTER
case "PRAC"_packed4: // PRACK
case "OPTI"_packed4: // OPTIONS
case "SUBS"_packed4: // SUBSCRIBE
case "NOTI"_packed4: // NOTIFY
case "PUBL"_packed4: // PUBLISH
case "INFO"_packed4: // INFO
case "REFE"_packed4: // REFER
case "MESS"_packed4: // MESSAGE
case "UPDA"_packed4: // UPDATE
return SipLayer::SipParseResult::Request;

case "SIP/"_packed4:
return SipLayer::SipParseResult::Response;

default:
return SipLayer::SipParseResult::Unknown;
}
}

SipLayer* SipLayer::parseSipLayer(uint8_t* data, size_t dataLen, Layer* prevLayer, Packet* packet, uint16_t srcPort,
uint16_t dstPort)
{
if (!(SipLayer::isSipPort(srcPort) || SipLayer::isSipPort(dstPort)))
{
return nullptr;
}

if (SipRequestFirstLine::parseMethod(reinterpret_cast<char*>(data), dataLen) !=
SipRequestLayer::SipMethodUnknown)
{
return new SipRequestLayer(data, dataLen, prevLayer, packet);
}

if (SipResponseFirstLine::parseStatusCode(reinterpret_cast<char*>(data), dataLen) !=
SipResponseLayer::SipStatusCodeUnknown &&
!SipResponseFirstLine::parseVersion(reinterpret_cast<char*>(data), dataLen).empty())
{
return new SipResponseLayer(data, dataLen, prevLayer, packet);
}

return nullptr;
}

SipLayer* SipLayer::parseSipLayer(uint8_t* data, size_t dataLen, Layer* prevLayer, Packet* packet)
{
SipLayer::SipParseResult sipParseResult = detectSipMessageType(data, dataLen);

if (sipParseResult == SipLayer::SipParseResult::Unknown)
{
return nullptr;
}

if (sipParseResult == SipLayer::SipParseResult::Request)
{
if (SipRequestFirstLine::parseFirstLine(reinterpret_cast<char*>(data), dataLen).first)
{
return new SipRequestLayer(data, dataLen, prevLayer, packet);
}
return nullptr;
}

if (SipResponseFirstLine::parseStatusCode(reinterpret_cast<char*>(data), dataLen) !=
SipResponseLayer::SipStatusCodeUnknown &&
!SipResponseFirstLine::parseVersion(reinterpret_cast<char*>(data), dataLen).empty())
{
return new SipResponseLayer(data, dataLen, prevLayer, packet);
}
return nullptr;
}

// -------- Class SipRequestFirstLine -----------------

SipRequestFirstLine::SipRequestFirstLine(SipRequestLayer* sipRequest) : m_SipRequest(sipRequest)
Expand Down Expand Up @@ -208,6 +305,84 @@ namespace pcpp
return methodAdEnum->second;
}

std::pair<bool, SipRequestFirstLine::SipFirstLineData> SipRequestFirstLine::parseFirstLine(const char* data,
size_t dataLen)
{
SipFirstLineData result = { "", "", "" };

if (data == nullptr || dataLen == 0)
{
PCPP_LOG_DEBUG("Empty data in SIP request line");
return { false, result };
}

// Find first space (end of METHOD)
size_t firstSpaceIndex = 0;
while (firstSpaceIndex < dataLen && data[firstSpaceIndex] != ' ')
{
firstSpaceIndex++;
}

if (firstSpaceIndex == 0 || firstSpaceIndex == dataLen)
{
PCPP_LOG_DEBUG("Invalid METHOD in SIP request line");
return { false, result };
}

// Validate method exists in SipMethodStringToEnum
std::string methodStr{ data, firstSpaceIndex };
if (SipMethodStringToEnum.find(methodStr) == SipMethodStringToEnum.end())
{
PCPP_LOG_DEBUG("Unknown SIP method");
return { false, result };
}

// Find second space (end of URI)
size_t secondSpaceIndex = firstSpaceIndex + 1;
while (secondSpaceIndex < dataLen && data[secondSpaceIndex] != ' ')
secondSpaceIndex++;

if (secondSpaceIndex == dataLen)
{
PCPP_LOG_DEBUG("No space before version");
return { false, result };
}

size_t uriLen = secondSpaceIndex - firstSpaceIndex - 1;
if (uriLen == 0)
{
PCPP_LOG_DEBUG("Empty URI");
return { false, result };
}

// Find end of line
size_t lineEnd = secondSpaceIndex + 1;
while (lineEnd < dataLen && data[lineEnd] != '\r' && data[lineEnd] != '\n')
lineEnd++;

// Minimum length for "SIP/x.y"
size_t versionLen = lineEnd - secondSpaceIndex - 1;
if (versionLen < 7)
{
PCPP_LOG_DEBUG("Version too short");
return { false, result };
}

const char* versionStart = data + secondSpaceIndex + 1;
if (versionStart[0] != 'S' || versionStart[1] != 'I' || versionStart[2] != 'P' || versionStart[3] != '/')
{
PCPP_LOG_DEBUG("Invalid SIP version format");
return { false, result };
}

// All validations passed
result.method = std::move(methodStr);
result.uri = std::string{ data + firstSpaceIndex + 1, uriLen };
result.version = std::string{ versionStart, versionLen };

return { true, result };
}

void SipRequestFirstLine::parseVersion()
{
if (m_SipRequest->getDataLen() < static_cast<size_t>(m_UriOffset))
Expand Down
27 changes: 18 additions & 9 deletions Packet++/src/UdpLayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,14 +110,11 @@ namespace pcpp
m_NextLayer = new DnsLayer(udpData, udpDataLen, this, getAttachedPacket());
else if (SipLayer::isSipPort(portDst) || SipLayer::isSipPort(portSrc))
{
if (SipRequestFirstLine::parseMethod((char*)udpData, udpDataLen) != SipRequestLayer::SipMethodUnknown)
m_NextLayer = new SipRequestLayer(udpData, udpDataLen, this, getAttachedPacket());
else if (SipResponseFirstLine::parseStatusCode((char*)udpData, udpDataLen) !=
SipResponseLayer::SipStatusCodeUnknown &&
SipResponseFirstLine::parseVersion((char*)udpData, udpDataLen) != "")
m_NextLayer = new SipResponseLayer(udpData, udpDataLen, this, getAttachedPacket());
else
m_NextLayer = new PayloadLayer(udpData, udpDataLen, this, getAttachedPacket());
m_NextLayer = SipLayer::parseSipLayer(udpData, udpDataLen, this, getAttachedPacket(), portSrc, portDst);
if (!m_NextLayer)
{
constructNextLayer<PayloadLayer>(udpData, udpDataLen, getAttachedPacket());
}
}
else if ((RadiusLayer::isRadiusPort(portDst) || RadiusLayer::isRadiusPort(portSrc)) &&
RadiusLayer::isDataValid(udpData, udpDataLen))
Expand Down Expand Up @@ -152,8 +149,20 @@ namespace pcpp
if (!m_NextLayer)
m_NextLayer = new PayloadLayer(udpData, udpDataLen, this, getAttachedPacket());
}
else

// If a valid layer was found, return immediately
if (m_NextLayer)
{
return;
}

// Here, heuristics for all protocols should be invoked to determine the correct layer
m_NextLayer = SipLayer::parseSipLayer(udpData, udpDataLen, this, getAttachedPacket());

if (!m_NextLayer)
{
m_NextLayer = new PayloadLayer(udpData, udpDataLen, this, getAttachedPacket());
}
}

void UdpLayer::computeCalculateFields()
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
5056c2a5e282ac49c3b41e570800450003e60000400040118c1fc0a81444c0a81553d03dcc9c03d20000494e56495445207369703a31303036403139322e3136382e32312e38333a3532333830205349502f322e300d0a5669613a205349502f322e302f554450203139322e3136382e32302e36383a35333330393b72706f72743b6272616e63683d7a39684734624b506a39336161623839353831623034623239383762353561353332303331643731320d0a4d61782d466f7277617264733a2037300d0a46726f6d3a203c7369703a31303035403139322e3136382e32312e38333e3b7461673d61353062666662356464643334323665386638343865636537643064333839620d0a546f3a203c7369703a31303036403139322e3136382e32312e38333e0d0a436f6e746163743a203c7369703a31303035403139322e3136382e32302e36383a35333330393b6f623e0d0a43616c6c2d49443a2030633362616232636562653334656339393761383064616134333436623339330d0a435365713a20313230303320494e564954450d0a416c6c6f773a20505241434b2c20494e564954452c2041434b2c204259452c2043414e43454c2c205550444154452c20494e464f2c205355425343524942452c204e4f544946592c2052454645522c204d4553534147452c204f5054494f4e530d0a537570706f727465643a207265706c616365732c2031303072656c2c2074696d65722c206e6f72656665727375620d0a53657373696f6e2d457870697265733a20313830300d0a4d696e2d53453a2039300d0a557365722d4167656e743a204d6963726f5349502f332e32322e330d0a436f6e74656e742d547970653a206170706c69636174696f6e2f7364700d0a436f6e74656e742d4c656e6774683a2020203334320d0a0d0a763d300d0a6f3d2d2033393735343231383631203339373534323138363120494e20495034203139322e3136382e32302e36380d0a733d706a6d656469610d0a623d41533a38340d0a743d3020300d0a613d582d6e61743a300d0a6d3d617564696f2034303034205254502f41565020382030203130310d0a633d494e20495034203139322e3136382e32302e36380d0a623d544941533a36343030300d0a613d727463703a3430303520494e20495034203139322e3136382e32302e36380d0a613d73656e64726563760d0a613d7274706d61703a382050434d412f383030300d0a613d7274706d61703a302050434d552f383030300d0a613d7274706d61703a3130312074656c6570686f6e652d6576656e742f383030300d0a613d666d74703a31303120302d31360d0a613d737372633a31333038393936333420636e616d653a343938653434356430336530346262360d0a
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
5056c2a5e282ac49c3b41e570800450003960000400040118c6fc0a81444c0a81553e0f2cc9c038200005349502f322e3020323030204f4b0d0a5669613a205349502f322e302f554450203139322e3136382e32312e38333a35323338303b72706f72743d35323338303b72656365697665643d3139322e3136382e32312e38333b6272616e63683d7a39684734624b396a6a676536483430356335610d0a43616c6c2d49443a2030633166623163352d353966352d313233662d316162302d3030353035366135383034390d0a46726f6d3a2022457874656e73696f6e203130303522203c7369703a31303035403139322e3136382e32312e38333e3b7461673d3963745174324e355a6d3546440d0a546f3a203c7369703a31303036403139322e3136382e32302e36383b6f623e3b7461673d35323065343635313963653934333532626566323630366161616436333333630d0a435365713a2031303836353634333820494e564954450d0a416c6c6f773a20505241434b2c20494e564954452c2041434b2c204259452c2043414e43454c2c205550444154452c20494e464f2c205355425343524942452c204e4f544946592c2052454645522c204d4553534147452c204f5054494f4e530d0a436f6e746163743a203c7369703a31303036403139322e3136382e32302e36383a35373538363b6f623e0d0a537570706f727465643a207265706c616365732c2031303072656c2c2074696d65722c206e6f72656665727375620d0a436f6e74656e742d547970653a206170706c69636174696f6e2f7364700d0a436f6e74656e742d4c656e6774683a2020203331390d0a0d0a763d300d0a6f3d2d2033393735343231383631203339373534323138363220494e20495034203139322e3136382e32302e36380d0a733d706a6d656469610d0a623d41533a38340d0a743d3020300d0a613d582d6e61743a300d0a6d3d617564696f2034303036205254502f4156502038203130310d0a633d494e20495034203139322e3136382e32302e36380d0a623d544941533a36343030300d0a613d727463703a3430303720494e20495034203139322e3136382e32302e36380d0a613d73656e64726563760d0a613d7274706d61703a382050434d412f383030300d0a613d7274706d61703a3130312074656c6570686f6e652d6576656e742f383030300d0a613d666d74703a31303120302d31360d0a613d737372633a3134393431323030333120636e616d653a313739363565373334373065373364390d0a
1 change: 1 addition & 0 deletions Tests/Packet++Test/TestDefinition.h
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ PTF_TEST_CASE(Igmpv3ReportCreateAndEditTest);
// Implemented in SipSdpTests.cpp
PTF_TEST_CASE(SipRequestParseMethodTest);
PTF_TEST_CASE(SipRequestLayerParsingTest);
PTF_TEST_CASE(SipDetectionByContentOnNonStandardPort);
PTF_TEST_CASE(SipRequestLayerCreationTest);
PTF_TEST_CASE(SipRequestLayerEditTest);
PTF_TEST_CASE(SipResponseParseStatusCodeTest);
Expand Down
33 changes: 33 additions & 0 deletions Tests/Packet++Test/Tests/SipSdpTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,39 @@ PTF_TEST_CASE(SipRequestLayerParsingTest)

} // SipRequestLayerParsingTest

PTF_TEST_CASE(SipDetectionByContentOnNonStandardPort)
{
timeval time;
gettimeofday(&time, nullptr);

// Load SIP Request packet with non-standard ports: UDP src=53309, dst=52380
auto rawPacket1 = createPacketFromHexResource("PacketExamples/sip_non_default_port1.dat");
pcpp::Packet sipReqNonStandardPort(rawPacket1.get());

PTF_ASSERT_TRUE(sipReqNonStandardPort.isPacketOfType(pcpp::SIPRequest));

auto sipReqLayer = sipReqNonStandardPort.getLayerOfType<pcpp::SipRequestLayer>();
PTF_ASSERT_NOT_NULL(sipReqLayer);

PTF_ASSERT_EQUAL(sipReqLayer->getFirstLine()->getMethod(), pcpp::SipRequestLayer::SipINVITE, enum);
PTF_ASSERT_EQUAL(sipReqLayer->getFirstLine()->getUri(), "sip:[email protected]:52380");
PTF_ASSERT_EQUAL(sipReqLayer->getFirstLine()->getVersion(), "SIP/2.0");

// Load SIP Response packet with non-standard ports: UDP src=53309, dst=52380
auto rawPacket2 = createPacketFromHexResource("PacketExamples/sip_non_default_port2.dat");
pcpp::Packet sipResNonStandardPort(rawPacket2.get());

PTF_ASSERT_TRUE(sipResNonStandardPort.isPacketOfType(pcpp::SIPResponse));

auto sipRespLayer = sipResNonStandardPort.getLayerOfType<pcpp::SipResponseLayer>();
PTF_ASSERT_NOT_NULL(sipRespLayer);

PTF_ASSERT_EQUAL(sipRespLayer->getFirstLine()->getStatusCode(), pcpp::SipResponseLayer::Sip200OK, enum);
PTF_ASSERT_EQUAL(sipRespLayer->getFirstLine()->getStatusCodeAsInt(), 200);
PTF_ASSERT_EQUAL(sipRespLayer->getFirstLine()->getStatusCodeString(), "OK");
PTF_ASSERT_EQUAL(sipRespLayer->getFirstLine()->getVersion(), "SIP/2.0");
} // SipDetectionByContentOnNonStandardPort

PTF_TEST_CASE(SipRequestLayerCreationTest)
{
auto rawPacketAndBuf1 = createPacketAndBufferFromHexResource("PacketExamples/sip_req1.dat");
Expand Down
1 change: 1 addition & 0 deletions Tests/Packet++Test/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,7 @@ int main(int argc, char* argv[])

PTF_RUN_TEST(SipRequestParseMethodTest, "sip");
PTF_RUN_TEST(SipRequestLayerParsingTest, "sip");
PTF_RUN_TEST(SipDetectionByContentOnNonStandardPort, "sip");
PTF_RUN_TEST(SipRequestLayerCreationTest, "sip");
PTF_RUN_TEST(SipRequestLayerEditTest, "sip");
PTF_RUN_TEST(SipResponseParseStatusCodeTest, "sip");
Expand Down
Loading