mirror of
https://github.com/resiprocate/resiprocate.git
synced 2026-01-12 00:05:02 +08:00
git-svn-id: https://svn.resiprocate.org/rep/resiprocate/main@8080 ddefafc4-47db-0310-ae44-fa13212b10f2
16 lines
253 B
C++
16 lines
253 B
C++
#include "p2p/Event.hxx"
|
|
#include "p2p/FlowId.hxx"
|
|
#include <iostream>
|
|
|
|
namespace p2p
|
|
{
|
|
|
|
std::ostream&
|
|
operator<<( std::ostream& strm, const FlowId& flow )
|
|
{
|
|
strm << "Flow: " << flow.getApplication() << " " << flow.getSocket();
|
|
return strm;
|
|
}
|
|
|
|
}
|