/*** This Programs/Libraries are (C)opyright by Sebastian Krahmer.
 *** You may use it under the terms of the GPL. You should have
 *** already received the file COPYING that shows you your rights.
 *** Please look at COPYING for further license-details.
 ***  
 *** THERE IS ABSOLUTELY NO WARRANTY. SO YOU USE IT AT YOUR OWN RISK.
 *** IT WAS WRITTEN IN THE HOPE THAT IT WILL BE USEFULL. I AM NOT RESPONSIBLE
 *** FOR ANY DAMAGE YOU MAYBE GET DUE TO USING MY PROGRAMS.
 ***/
#include "config.h"
#include "usi++/usi-structs.h"
#include "usi++/RX.h"
#include "usi++/TX.h"
#include "usi++/Layer2.h"
#include "usi++/datalink.h"
#include "usi++/TX_IP.h"
#include <stdio.h>
#include <string.h>

namespace usipp {

Layer2::Layer2(RX *r, TX *t)
{
	if (!r)
		d_rx = new Pcap;
	else
		d_rx = r;
		
	if (!t)
		d_tx = new TX_IP;
	else
		d_tx = t;
}

Layer2::Layer2(const Layer2& rhs) {
	d_rx = new Pcap;
	d_tx = new TX_IP;
	
}

Layer2::~Layer2() 
{
    if (d_rx) {
            delete d_rx;
			d_rx = NULL;
	}

    if (d_tx) {
            delete d_tx;
			d_tx=NULL;
	}
}

int Layer2::sendpack(void *buf, size_t len, struct sockaddr *s)
{
	return d_tx->sendpack(buf, len, s);
}

// delegate sniff request to the receiver
int Layer2::sniffpack(void *buf, size_t len)
{
	return d_rx->sniffpack(buf, len);
}

int Layer2::setfilter(char *fstring)
{
	return d_rx->setfilter(fstring);
}

int Layer2::init_device(char *dev, int p, size_t snaplen)
{
	return d_rx->init_device(dev, p, snaplen);
}

int Layer2::timeout(struct timeval tv)
{
	if (d_rx) return d_rx->timeout(tv);
	if (d_tx) return d_tx->timeout(tv);
    return -1;
}

bool Layer2::timeout()
{
	if (d_rx) return d_rx->timeout();
	if (d_tx) return d_tx->timeout();
    return false;
}

Layer2& Layer2::operator=(const Layer2 &rhs )
{
	if (this == &rhs)
		return *this;
	d_rx = new Pcap;
	d_tx = new TX_IP;
	return *this;
}

} // namespace usipp


syntax highlighted by Code2HTML, v. 0.9.1