conexus/ll_address.h

00001 /***************************************************************************
00002  *   Copyright (C) 2001 by Rick L. Vinyard, Jr.                            *
00003  *   rvinyard@cs.nmsu.edu                                                  *
00004  *                                                                         *
00005  *   This program is free software; you can redistribute it and/or modify  *
00006  *   it under the terms of the GNU Lesser General Public License as        *
00007  *   published by the Free Software Foundation version 2.1.                *
00008  *                                                                         *
00009  *   This program is distributed in the hope that it will be useful,       *
00010  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
00011  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
00012  *   GNU General Public License for more details.                          *
00013  *                                                                         *
00014  *   You should have received a copy of the GNU Lesser General Public      *
00015  *   License along with this library; if not, write to the                 *
00016  *   Free Software Foundation, Inc.,                                       *
00017  *   51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA              *
00018  ***************************************************************************/
00019 #ifndef CONEXUS_LLLL_ADDRESS_H
00020 #define CONEXUS_LLLL_ADDRESS_H
00021 
00022 #include <net/ethernet.h>
00023 
00024 #include <vector>
00025 #include <string>
00026 
00027 #include <conexus/address.h>
00028 #include <conexus/utility.h>
00029 
00030 namespace Conexus
00031   {
00032 
00039   namespace LL
00040     {
00041 
00056     class Address : public Conexus::Address
00057       {
00058       public:
00059         Address(unsigned short protocol=ETH_P_IP);
00060 
00061         virtual ~Address();
00062 
00063         unsigned short family() const;
00064 
00065         unsigned short protocol() const;
00066         void set_protocol(unsigned short);
00067 
00068         int interface_index() const;
00069         unsigned short hardware_type() const;
00070         unsigned char packet_type() const;
00071         unsigned char hardware_address_length() const;
00072         const unsigned char* hardware_address() const;
00073 
00074         virtual socklen_t sockaddr_size() const;
00075         virtual bool is_broadcast() const;
00076 
00077         void set_interface(int);
00078         void set_interface(const std::string);
00079 
00080       protected:
00081 
00082         friend class Packet;
00083 
00084       };
00085 
00086   }
00087 
00088 }
00089 
00090 #endif

Generated on Tue Mar 13 19:54:48 2007 by  doxygen 1.5.1