Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions agent-ovs/ovs/PacketInHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1005,10 +1005,10 @@ static void handleRstPktIn(SwitchConnection* conn,
}

if (flow.nw_proto == IPPROTO_TCP) { // TCP protocol (6)
LOG(DEBUG) << "Dispatching to handleTcpRstPktIn.";
LOG(TRACE) << "Dispatching to handleTcpRstPktIn.";
handleTcpRstPktIn(conn, intFlowManager, pi, proto, pkt, flow); // Call as member function
} else if (flow.nw_proto == IPPROTO_UDP) { // UDP protocol (17)
LOG(DEBUG) << "Dispatching to handleUdpIcmpUnreachablePktIn.";
LOG(TRACE) << "Dispatching to handleUdpIcmpUnreachablePktIn.";
handleUdpIcmpUnreachablePktIn(conn, intFlowManager, pi, proto, pkt, flow); // Call as member function
} else {
LOG(WARNING) << "RST_FLOW cookie received for unsupported L4 protocol "
Expand Down
2 changes: 1 addition & 1 deletion agent-ovs/ovs/Packets.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1173,7 +1173,7 @@ OfpBuf compose_tcp_rst(const char* pkt_data,

b.get()->size = l4_offset + tcp_hdr_len; // Trim buffer to actual packet size

LOG(DEBUG) << "Composed TCP RST from "
LOG(TRACE) << "Composed TCP RST from "
<< boost::asio::ip::address_v4(ntohl(saddr_orig)) << ":" << ntohs(original_tcp_hdr->th_sport)
<< " to "
<< boost::asio::ip::address_v4(ntohl(daddr_orig)) << ":" << ntohs(original_tcp_hdr->th_dport);
Expand Down