src/routing/aodv/aodv.h
author Borovkova Elena <borovkovaes@iitp.ru>
Sun, 05 Jul 2009 16:59:03 +0400
changeset 5542 1b504e63a1b1
parent 5537 9cd454241cb3
child 5591 e0448da5da14
permissions -rwxr-xr-x
aodv_rtable unit test added
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5537
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
     1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
     2
/*
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
     3
 * Copyright (c) 2009 IITP RAS
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
     4
 *
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License version 2 as
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
     7
 * published by the Free Software Foundation;
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
     8
 *
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
    12
 * GNU General Public License for more details.
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
    13
 *
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
    17
 *
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
    18
 * Authors: Pavel Boyko <boyko@iitp.ru>
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
    19
 */
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
    20
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
    21
#ifndef AODV_H_
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
    22
#define AODV_H_
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
    23
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
    24
/**
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
    25
 * \ingroup routing
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
    26
 * \defgroup aodv AODV
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
    27
 * 
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
    28
 * \brief RFC-conformant AODV model ported from ns-2
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
    29
 * 
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
    30
 * TODO more docs 
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
    31
 */
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
    32
9cd454241cb3 AODV routing table added
Pavel Boyko <boyko@iitp.ru>
parents:
diff changeset
    33
#endif /* AODV_H_ */