cleanups in kernel interface code

added proper traffic selector to string conversion
some cleanups here & there
This commit is contained in:
Martin Willi
2006-07-18 12:53:54 +00:00
parent 623d3dcf78
commit 92ee45a0ee
23 changed files with 730 additions and 586 deletions
+2 -2
View File
@@ -113,8 +113,8 @@ static status_t execute(private_incoming_packet_job_t *this)
src = message->get_source(message);
dst = message->get_destination(message);
this->logger->log(this->logger, CONTROL, "received packet: from %s:%d to %s:%d",
src->get_address(src), src->get_port(src),
dst->get_address(dst), dst->get_port(dst));
src->get_string(src), src->get_port(src),
dst->get_string(dst), dst->get_port(dst));
status = message->parse_header(message);
if (status != SUCCESS)