recibir una mac (tipo de mensaje) arbitrario.
}
std::string DevQue::receive() throw (std::runtime_error)
}
std::string DevQue::receive() throw (std::runtime_error)
+{
+ return receive(mac);
+}
+
+std::string DevQue::receive(const mac_type& mac) throw (std::runtime_error)
{
Frame* f = (Frame*) malloc(sizeof(Frame) + mtu);
if (!f)
{
Frame* f = (Frame*) malloc(sizeof(Frame) + mtu);
if (!f)
/// Recibe un frame
std::string receive()
throw (std::runtime_error);
/// Recibe un frame
std::string receive()
throw (std::runtime_error);
+ std::string receive(const mac_type& mac)
+ throw (std::runtime_error);