/*** 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.
 ***/


#ifndef _USIPP_H_
#define _USIPP_H_ 

#ifndef USI_VERSION
#define USI_VERSION 192
#endif

#include "config.h"
#include <string>

using namespace std; 

namespace usipp {

class usifault {
	string fault;
public:
   	usifault(const char *s = "undef") : fault(s) {}
        ~usifault() {}
	const char *why() { return fault.c_str(); }
};

/* For error-handling.
 */
typedef enum {
	PERROR = 0,
	HERROR,
	PCAP,
	STDERR
} errorFuncs;

extern unsigned short in_cksum(unsigned short *ptr, int len, bool may_pad);
extern bool exceptions;
extern int useException(bool);
extern void die(const char *, errorFuncs, int);
extern char *getMAC(const char *, char *, int);
extern char *setMAC(const char *, char *);

} // namespace usipp


#endif // _USIPP_H_
