include/PacketReader.h
author Markus Bröker <mbroeker@largo.homelinux.org>
Sat, 03 Jan 2009 01:28:28 +0100
changeset 4 fdf04a93faeb
parent 3 724e07a9f155
permissions -rw-r--r--
Codebase indented by me and gnu-indent

/*
 *  $Id: PacketReader.h 2 2007-12-22 14:15:30Z mbroeker $
 * $URL: http://localhost/svn/cpp/qMonitor/trunk/include/PacketReader.h $
 */

#ifndef PacketReader_H
#define PacketReader_H

#include <string>
#include <stdexcept>
#include <iostream>

extern "C" {
#include <sys/socket.h>
#include <netinet/if_ether.h>
#include <netinet/ip.h>
#include <sys/poll.h>
#include <fcntl.h>
#include <sys/types.h>
#include <unistd.h>
};

class PacketReader {
  protected:
    int p_socket;
  private:
    int timeout;
  public:
      PacketReader (int tm = 500);
      PacketReader (std::string);
     ~PacketReader ();
      std::string read ();
    bool ready ();
    bool dataAvailable ();
};
#endif