Skip to content

Commit

Permalink
September 18 13:42 hours
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Sep 18, 2015
1 parent e2831e4 commit 127965e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sink_monitor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,14 @@ void SinkMonitor::read_tun() {
count = read(tun_fd, pkt.data, BUFFER_SIZE);
report_error(count);
pkt.data_len = count;
cout << "Successfully read data from the TUN device" << endl;
// cout << "Successfully read data from the TUN device" << endl;
}

void SinkMonitor::write_tun() {

count = write(tun_fd, pkt.data, pkt.data_len);
report_error(count);
cout << "Successfully written data into the TUN device" << endl;
// cout << "Successfully written data into the TUN device" << endl;
}

void SinkMonitor::configure_topgw() {
Expand Down

0 comments on commit 127965e

Please sign in to comment.