Ejemplo n.º 1
0
void
LogFilter::send_L_Data (LDataPtr l)
{
  if (log_send)
    t->TracePrintf (0, "Send %s", l->Decode (t));
  Filter::send_L_Data(std::move(l));
}
Ejemplo n.º 2
0
void
LogFilter::recv_L_Data (LDataPtr l)
{
  if (log_recv)
    t->TracePrintf (0, "Recv %s", l->Decode (t));
  Filter::recv_L_Data(std::move(l));
}
Ejemplo n.º 3
0
void LLlog::send_L_Data(LDataPtr l)
{
  tr()->TracePrintf (0, "Send %s", l->Decode (t));
  iface->send_L_Data(std::move(l));
}
Ejemplo n.º 4
0
void LLlog::recv_L_Data(LDataPtr l)
{
  tr()->TracePrintf (0, "Recv %s", l->Decode (t));
  master->recv_L_Data(std::move(l));
}