Files
resiprocate/p2p/FlowId.cxx
Derek MacDonald dc6689bbb3 more logging
git-svn-id: https://svn.resiprocate.org/rep/resiprocate/main@8080 ddefafc4-47db-0310-ae44-fa13212b10f2
2008-06-19 02:40:19 +00:00

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;
}
}