diff options
Diffstat (limited to 'dev/etherlink.hh')
-rw-r--r-- | dev/etherlink.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/etherlink.hh b/dev/etherlink.hh index 4f227fac5..204348c6d 100644 --- a/dev/etherlink.hh +++ b/dev/etherlink.hh @@ -105,7 +105,7 @@ class EtherLink : public SimObject public: Interface(const std::string &name, Link *txlink, Link *rxlink); bool recvPacket(PacketPtr &packet) { return txlink->transmit(packet); } - void sendDone() { } + void sendDone() { peer->sendDone(); } }; Link *link1; |