From fb0f1aba8996bbc0676400f9cbc0b761def0c9de Mon Sep 17 00:00:00 2001 From: Andrey Mazo Date: Fri, 13 Mar 2009 17:51:04 +0300 Subject: [PATCH] Added license information to some files. Fixed authors list in some files. --- examples/mesh.cc | 3 +-- examples/routing-table-test.cc | 21 +++++++++++++++++++ src/devices/wifi/mesh-mgt-headers.cc | 1 - src/devices/wifi/mesh-mgt-headers.h | 1 - src/devices/wifi/mesh-wifi-mac-header.cc | 21 +++++++++++++++++++ src/devices/wifi/mesh-wifi-mac-header.h | 21 +++++++++++++++++++ src/devices/wifi/mesh-wifi-mac.cc | 4 +--- src/devices/wifi/mesh-wifi-mac.h | 6 +++--- src/devices/wifi/mesh-wifi-peer-manager.cc | 2 -- src/devices/wifi/mesh-wifi-peer-manager.h | 2 -- .../mesh-wifi-perr-information-element.cc | 3 +-- .../wifi/mesh-wifi-perr-information-element.h | 3 +-- .../mesh-wifi-prep-information-element.cc | 3 +-- .../wifi/mesh-wifi-prep-information-element.h | 3 +-- .../mesh-wifi-preq-information-element.cc | 3 +-- .../wifi/mesh-wifi-preq-information-element.h | 3 +-- .../mesh-wifi-rann-information-element.cc | 3 +-- .../wifi/mesh-wifi-rann-information-element.h | 3 +-- src/helper/mesh-wifi-helper.cc | 3 +-- src/helper/mesh-wifi-helper.h | 3 +-- src/node/mac48-address-comparator.h | 21 +++++++++++++++++++ 21 files changed, 99 insertions(+), 34 deletions(-) diff --git a/examples/mesh.cc b/examples/mesh.cc index d3185d567..2a43fc787 100644 --- a/examples/mesh.cc +++ b/examples/mesh.cc @@ -15,8 +15,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * Authors: Kirill Andreev - * Evgeny Khorov + * Author: Kirill Andreev */ diff --git a/examples/routing-table-test.cc b/examples/routing-table-test.cc index a84bf8bff..4fc29ecc3 100644 --- a/examples/routing-table-test.cc +++ b/examples/routing-table-test.cc @@ -1,3 +1,24 @@ +/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */ +/* + * Copyright (c) 2009 IITP RAS + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation; + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + * Author: Kirill Andreev + */ + + #include #include #include "ns3/core-module.h" diff --git a/src/devices/wifi/mesh-mgt-headers.cc b/src/devices/wifi/mesh-mgt-headers.cc index 02caa702b..cbbfea4ff 100644 --- a/src/devices/wifi/mesh-mgt-headers.cc +++ b/src/devices/wifi/mesh-mgt-headers.cc @@ -16,7 +16,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Authors: Kirill Andreev - * Yana Podkosova * Aleksey Kovalenko */ diff --git a/src/devices/wifi/mesh-mgt-headers.h b/src/devices/wifi/mesh-mgt-headers.h index 71fff1ac8..a0e0d4167 100644 --- a/src/devices/wifi/mesh-mgt-headers.h +++ b/src/devices/wifi/mesh-mgt-headers.h @@ -16,7 +16,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Authors: Kirill Andreev - * Yana Podkosova * Aleksey Kovalenko */ diff --git a/src/devices/wifi/mesh-wifi-mac-header.cc b/src/devices/wifi/mesh-wifi-mac-header.cc index 30dc09229..cb19daaa2 100644 --- a/src/devices/wifi/mesh-wifi-mac-header.cc +++ b/src/devices/wifi/mesh-wifi-mac-header.cc @@ -1,3 +1,24 @@ +/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */ +/* + * Copyright (c) 2009 IITP RAS + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation; + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + * Author: Kirill Andreev + */ + + #include "ns3/assert.h" #include "ns3/address-utils.h" #include "mesh-wifi-mac-header.h" diff --git a/src/devices/wifi/mesh-wifi-mac-header.h b/src/devices/wifi/mesh-wifi-mac-header.h index f29a5e57e..16e56508b 100644 --- a/src/devices/wifi/mesh-wifi-mac-header.h +++ b/src/devices/wifi/mesh-wifi-mac-header.h @@ -1,3 +1,24 @@ +/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */ +/* + * Copyright (c) 2009 IITP RAS + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation; + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + * Author: Kirill Andreev + */ + + #ifndef MESH_WIFI_MAC_HEADER_H #define MESH_WIFI_MAC_HEADER_H diff --git a/src/devices/wifi/mesh-wifi-mac.cc b/src/devices/wifi/mesh-wifi-mac.cc index 32e23afb6..4ef61f41b 100644 --- a/src/devices/wifi/mesh-wifi-mac.cc +++ b/src/devices/wifi/mesh-wifi-mac.cc @@ -15,9 +15,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * Authors: Kirill Andreev - * Ivan Pustogarov - * Evgeny Khorov + * Author: Kirill Andreev */ diff --git a/src/devices/wifi/mesh-wifi-mac.h b/src/devices/wifi/mesh-wifi-mac.h index ce11e0c7b..9c36b2ace 100644 --- a/src/devices/wifi/mesh-wifi-mac.h +++ b/src/devices/wifi/mesh-wifi-mac.h @@ -15,9 +15,10 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * Authors: Kirill Andreev - * Evgeny Khorov + * Author: Kirill Andreev */ + + #ifndef MAC_HIGH_MESH_H #define MAC_HIGH_MESH_H @@ -384,4 +385,3 @@ namespace ns3 { #endif /* MAC_HIGH_MESH_H */ -/*@}*/ diff --git a/src/devices/wifi/mesh-wifi-peer-manager.cc b/src/devices/wifi/mesh-wifi-peer-manager.cc index 557cd925a..55a551727 100644 --- a/src/devices/wifi/mesh-wifi-peer-manager.cc +++ b/src/devices/wifi/mesh-wifi-peer-manager.cc @@ -17,8 +17,6 @@ * * Authors: Kirill Andreev * Aleksey Kovalenko - * Ivan Pustogarov - * Evgeny Khorov */ diff --git a/src/devices/wifi/mesh-wifi-peer-manager.h b/src/devices/wifi/mesh-wifi-peer-manager.h index e7dfc26f8..592940ac0 100644 --- a/src/devices/wifi/mesh-wifi-peer-manager.h +++ b/src/devices/wifi/mesh-wifi-peer-manager.h @@ -17,8 +17,6 @@ * * Authors: Kirill Andreev * Aleksey Kovalenko - * Ivan Pustogarov - * Evgeny Khorov */ diff --git a/src/devices/wifi/mesh-wifi-perr-information-element.cc b/src/devices/wifi/mesh-wifi-perr-information-element.cc index ea7daa9ba..962a08151 100644 --- a/src/devices/wifi/mesh-wifi-perr-information-element.cc +++ b/src/devices/wifi/mesh-wifi-perr-information-element.cc @@ -15,8 +15,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * Authors: Yana Podkosova - * Kirill Andreev + * Author: Kirill Andreev */ diff --git a/src/devices/wifi/mesh-wifi-perr-information-element.h b/src/devices/wifi/mesh-wifi-perr-information-element.h index 1f26bc439..f6187c2e5 100644 --- a/src/devices/wifi/mesh-wifi-perr-information-element.h +++ b/src/devices/wifi/mesh-wifi-perr-information-element.h @@ -15,8 +15,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * Authors: Yana Podkosova - * Kirill Andreev + * Author: Kirill Andreev */ diff --git a/src/devices/wifi/mesh-wifi-prep-information-element.cc b/src/devices/wifi/mesh-wifi-prep-information-element.cc index 691fa6479..7e06b23db 100644 --- a/src/devices/wifi/mesh-wifi-prep-information-element.cc +++ b/src/devices/wifi/mesh-wifi-prep-information-element.cc @@ -15,8 +15,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * Authors: Yana Podkosova - * Kirill Andreev + * Author: Kirill Andreev */ diff --git a/src/devices/wifi/mesh-wifi-prep-information-element.h b/src/devices/wifi/mesh-wifi-prep-information-element.h index 0bab2121f..e49a368d5 100644 --- a/src/devices/wifi/mesh-wifi-prep-information-element.h +++ b/src/devices/wifi/mesh-wifi-prep-information-element.h @@ -15,8 +15,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * Authors: Yana Podkosova - * Kirill Andreev + * Author: Kirill Andreev */ diff --git a/src/devices/wifi/mesh-wifi-preq-information-element.cc b/src/devices/wifi/mesh-wifi-preq-information-element.cc index b119c4851..8f0f4c65c 100644 --- a/src/devices/wifi/mesh-wifi-preq-information-element.cc +++ b/src/devices/wifi/mesh-wifi-preq-information-element.cc @@ -15,8 +15,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * Authors: Yana Podkosova - * Kirill Andreev + * Author: Kirill Andreev */ diff --git a/src/devices/wifi/mesh-wifi-preq-information-element.h b/src/devices/wifi/mesh-wifi-preq-information-element.h index 091ea866f..b444fcef7 100644 --- a/src/devices/wifi/mesh-wifi-preq-information-element.h +++ b/src/devices/wifi/mesh-wifi-preq-information-element.h @@ -15,8 +15,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * Authors: Yana Podkosova - * Kirill Andreev + * Author: Kirill Andreev */ diff --git a/src/devices/wifi/mesh-wifi-rann-information-element.cc b/src/devices/wifi/mesh-wifi-rann-information-element.cc index bbaaf01dd..d9c5a9468 100644 --- a/src/devices/wifi/mesh-wifi-rann-information-element.cc +++ b/src/devices/wifi/mesh-wifi-rann-information-element.cc @@ -15,8 +15,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * Authors: Yana Podkosova - * Kirill Andreev + * Author: Kirill Andreev */ diff --git a/src/devices/wifi/mesh-wifi-rann-information-element.h b/src/devices/wifi/mesh-wifi-rann-information-element.h index 666570386..a73c244e9 100644 --- a/src/devices/wifi/mesh-wifi-rann-information-element.h +++ b/src/devices/wifi/mesh-wifi-rann-information-element.h @@ -15,8 +15,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * Authors: Yana Podkosova - * Kirill Andreev + * Author: Kirill Andreev */ diff --git a/src/helper/mesh-wifi-helper.cc b/src/helper/mesh-wifi-helper.cc index f74c09c2e..64c1d32ce 100644 --- a/src/helper/mesh-wifi-helper.cc +++ b/src/helper/mesh-wifi-helper.cc @@ -15,8 +15,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * Authors: Kirill Andreev - * Evgeny Khorov + * Author: Kirill Andreev */ diff --git a/src/helper/mesh-wifi-helper.h b/src/helper/mesh-wifi-helper.h index cbdabe6f6..142af28fe 100644 --- a/src/helper/mesh-wifi-helper.h +++ b/src/helper/mesh-wifi-helper.h @@ -15,8 +15,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * Authors: Kirill Andreev - * Evgeny Khorov + * Author: Kirill Andreev */ diff --git a/src/node/mac48-address-comparator.h b/src/node/mac48-address-comparator.h index ed6f90958..6eec23079 100644 --- a/src/node/mac48-address-comparator.h +++ b/src/node/mac48-address-comparator.h @@ -1,3 +1,24 @@ +/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */ +/* + * Copyright (c) 2008,2009 IITP RAS + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation; + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + * Author: Kirill Andreev + */ + + #ifndef MAC48ADDRESS_COMPARATOR #define MAC48ADDRESS_COMPARATOR #include "ns3/mac48-address.h"