From 092fd6e4c2a533a301527d9f6aff037d9550d512 Mon Sep 17 00:00:00 2001 From: sangorrin Date: Wed, 16 Apr 2008 15:55:55 +0000 Subject: [PATCH] renaming git-svn-id: http://www.frescor.org/private/svn/frescor/fna/trunk@1117 35b4ef3e-fd22-0410-ab77-dab3279adceb --- src_frescan/frescan.c | 2 +- ...andwidth_reservation.c => frescan_bwres.c} | 10 +-- ...andwidth_reservation.h => frescan_bwres.h} | 2 +- ...ed_analysis.c => frescan_bwres_analysis.c} | 6 +- ...ed_analysis.h => frescan_bwres_analysis.h} | 4 +- .../{frescan_fna.c => frescan_bwres_fna.c} | 80 ++++--------------- src_frescan/frescan_bwres_fna.h | 24 ++++++ ...an_frsh_fna.c => frescan_bwres_frsh_fna.c} | 66 ++++----------- ...on_messages.c => frescan_bwres_messages.c} | 11 +-- src_frescan/frescan_bwres_messages.h | 31 +++++++ ...tion_threads.c => frescan_bwres_threads.c} | 10 +-- ...tion_threads.h => frescan_bwres_threads.h} | 4 +- src_frescan/frescan_fna.h | 74 ----------------- src_frescan/frescan_negotiation_messages.h | 33 -------- ...n_reply_objects.c => frescan_reply_objs.c} | 4 +- ...n_reply_objects.h => frescan_reply_objs.h} | 2 +- ...an_requests_queue.c => frescan_requests.c} | 6 +- ...an_requests_queue.h => frescan_requests.h} | 6 +- 18 files changed, 119 insertions(+), 256 deletions(-) rename src_frescan/{frescan_bandwidth_reservation.c => frescan_bwres.c} (98%) rename src_frescan/{frescan_bandwidth_reservation.h => frescan_bwres.h} (94%) rename src_frescan/{frescan_sched_analysis.c => frescan_bwres_analysis.c} (97%) rename src_frescan/{frescan_sched_analysis.h => frescan_bwres_analysis.h} (97%) rename src_frescan/{frescan_fna.c => frescan_bwres_fna.c} (92%) create mode 100644 src_frescan/frescan_bwres_fna.h rename src_frescan/{frescan_frsh_fna.c => frescan_bwres_frsh_fna.c} (73%) rename src_frescan/{frescan_negotiation_messages.c => frescan_bwres_messages.c} (98%) create mode 100644 src_frescan/frescan_bwres_messages.h rename src_frescan/{frescan_negotiation_threads.c => frescan_bwres_threads.c} (97%) rename src_frescan/{frescan_negotiation_threads.h => frescan_bwres_threads.h} (92%) delete mode 100644 src_frescan/frescan_fna.h delete mode 100644 src_frescan/frescan_negotiation_messages.h rename src_frescan/{frescan_reply_objects.c => frescan_reply_objs.c} (99%) rename src_frescan/{frescan_reply_objects.h => frescan_reply_objs.h} (97%) rename src_frescan/{frescan_requests_queue.c => frescan_requests.c} (98%) rename src_frescan/{frescan_requests_queue.h => frescan_requests.h} (95%) diff --git a/src_frescan/frescan.c b/src_frescan/frescan.c index e80a45a..df672f9 100644 --- a/src_frescan/frescan.c +++ b/src_frescan/frescan.c @@ -34,7 +34,7 @@ #include "frescan_debug.h" // DEBUG #include "frescan_id.h" // frescan_id_set_field, frescan_id_get_field #include "frescan_hw_buffer.h" // frescan_hw_buffer_update -#include "frescan_reply_objects.h" // frescan_replyobjects_init +#include "frescan_reply_objs.h" // frescan_replyobjects_init #include "frescan_servers_replenishments.h" // frescan_replenishments_xxx #include "frescan_packets.h" diff --git a/src_frescan/frescan_bandwidth_reservation.c b/src_frescan/frescan_bwres.c similarity index 98% rename from src_frescan/frescan_bandwidth_reservation.c rename to src_frescan/frescan_bwres.c index d112202..a69de04 100644 --- a/src_frescan/frescan_bandwidth_reservation.c +++ b/src_frescan/frescan_bwres.c @@ -1,5 +1,5 @@ /*! - * @file frescan_bandwidth_reservation.c + * @file frescan_bwres.c * * @brief FRESCAN bandwidth reservation layer * @@ -14,14 +14,14 @@ * */ -#include "frescan_bandwidth_reservation.h" +#include "frescan_bwres.h" #include "frescan_data.h" -#include "frescan_requests_queue.h" // frescan_requests_init +#include "frescan_requests.h" // frescan_requests_init #include "frescan_debug.h" #include "frescan_config.h" #include "frescan_servers.h" -#include "frescan_negotiation_messages.h" -#include "frescan_negotiation_threads.h" +#include "frescan_bwres_messages.h" +#include "frescan_bwres_threads.h" /** * frescan_bwres_init() diff --git a/src_frescan/frescan_bandwidth_reservation.h b/src_frescan/frescan_bwres.h similarity index 94% rename from src_frescan/frescan_bandwidth_reservation.h rename to src_frescan/frescan_bwres.h index b40cc01..830ac76 100644 --- a/src_frescan/frescan_bandwidth_reservation.h +++ b/src_frescan/frescan_bwres.h @@ -1,5 +1,5 @@ /*! - * @file frescan_bandwidth_reservation.h + * @file frescan_bwres.h * * @brief FRESCAN bandwidth reservation layer * diff --git a/src_frescan/frescan_sched_analysis.c b/src_frescan/frescan_bwres_analysis.c similarity index 97% rename from src_frescan/frescan_sched_analysis.c rename to src_frescan/frescan_bwres_analysis.c index b3661f7..eda9c8c 100644 --- a/src_frescan/frescan_sched_analysis.c +++ b/src_frescan/frescan_bwres_analysis.c @@ -1,7 +1,7 @@ /*! - * @file frescan_sched_analysis.c + * @file frescan_bwres_analysis.c * - * @brief FRESCAN sched analysis queue + * @brief FRESCAN bandwith reservation layer: sched analysis * * This module contains the scheduling analysis data and functions for the * admission tests and spare capacity distribution of the negotiation layer. @@ -72,7 +72,7 @@ * */ -#include "frescan_sched_analysis.h" +#include "frescan_bwres_analysis.h" #undef ERROR #include "frescan_debug.h" // #include "frsh_sa_tools.h" diff --git a/src_frescan/frescan_sched_analysis.h b/src_frescan/frescan_bwres_analysis.h similarity index 97% rename from src_frescan/frescan_sched_analysis.h rename to src_frescan/frescan_bwres_analysis.h index d1568d6..c2e2e5b 100644 --- a/src_frescan/frescan_sched_analysis.h +++ b/src_frescan/frescan_bwres_analysis.h @@ -1,7 +1,7 @@ /*! - * @file frescan_sched_analysis.h + * @file frescan_bwres_analysis.h * - * @brief FRESCAN sched analysis queue + * @brief FRESCAN bandwith reservation layer: sched analysis * * This module contains the scheduling analysis data and functions for the * admission tests and spare capacity distribution of the negotiation layer. diff --git a/src_frescan/frescan_fna.c b/src_frescan/frescan_bwres_fna.c similarity index 92% rename from src_frescan/frescan_fna.c rename to src_frescan/frescan_bwres_fna.c index 7c4d157..10babf2 100644 --- a/src_frescan/frescan_fna.c +++ b/src_frescan/frescan_bwres_fna.c @@ -1,72 +1,22 @@ -//---------------------------------------------------------------------- -// Copyright (C) 2006 - 2007 by the FRESCOR consortium: -// -// Universidad de Cantabria, SPAIN -// University of York, UK -// Scuola Superiore Sant'Anna, ITALY -// Kaiserslautern University, GERMANY -// Univ. Politecnica Valencia, SPAIN -// Czech Technical University in Prague, CZECH REPUBLIC -// ENEA SWEDEN -// Thales Communication S.A. FRANCE -// Visual Tools S.A. SPAIN -// Rapita Systems Ltd UK -// Evidence ITALY -// -// See http://www.frescor.org -// -// The FRESCOR project (FP6/2005/IST/5-034026) is funded -// in part by the European Union Sixth Framework Programme -// The European Union is not liable of any use that may be -// made of this code. -// -// -// based on previous work (FSF) done in the FIRST project -// -// Copyright (C) 2005 Mälardalen University, SWEDEN -// Scuola Superiore S.Anna, ITALY -// Universidad de Cantabria, SPAIN -// University of York, UK -// -// This file is part of FNA (Frescor Network Adaptation) -// -// FNA is free software; you can redistribute it and/or modify it -// under terms of the GNU General Public License as published by the -// Free Software Foundation; either version 2, or (at your option) any -// later version. FNA 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 FNA; see file -// COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, -// Cambridge, MA 02139, USA. -// -// As a special exception, including FNA header files in a file, -// instantiating FNA generics or templates, or linking other files -// with FNA objects to produce an executable application, does not -// by itself cause the resulting executable application to be covered -// by the GNU General Public License. This exception does not -// however invalidate any other reasons why the executable file might be -// covered by the GNU Public License. -// ----------------------------------------------------------------------- - -//============================================== -// ******** **** ** ** -// **///// /**/** /** **** -// ** /**//** /** **//** -// ******* /** //** /** ** //** -// **//// /** //**/** ********** -// ** /** //****/**//////** -// ** /** //***/** /** -// / // /// // // -// -// FNA(Frescor Network Adaptation layer), pronounced "efe ene a" -//============================================================== +/*! + * @file frescan_bwres_fna.c + * + * @brief FRESCAN bandwidth reservation layer: FNA hooks + * + * This module contains hooks to integrate the FRESCAN protocol in FRSH + * + * @version 0.01 + * + * @date 1-Apr-2008 + * + * @author Daniel Sangorrin + * + */ #include "frsh.h" /* frsh_resource_id_t, .. */ #include "frescan.h" /* frescan_init, ... */ #include "frescan_data.h" /* frescan_contract_t, ... */ -#include "frescan_bandwidth_reservation.h" /* frescan_bwres_init, ... */ +#include "frescan_bwres.h" /* frescan_bwres_init, ... */ #include "fna.h" /* fna_vres_id_t, fna_endpoint_data_t */ #undef ERROR diff --git a/src_frescan/frescan_bwres_fna.h b/src_frescan/frescan_bwres_fna.h new file mode 100644 index 0000000..e22434f --- /dev/null +++ b/src_frescan/frescan_bwres_fna.h @@ -0,0 +1,24 @@ +/*! + * @file frescan_bwres_fna.h + * + * @brief FRESCAN bandwidth reservation layer: FNA hooks + * + * This module contains hooks to integrate the FRESCAN protocol in FRSH + * + * @version 0.01 + * + * @date 1-Apr-2008 + * + * @author Daniel Sangorrin + * + */ + +#ifndef _FRESCAN_FNA_H_ +#define _FRESCAN_FNA_H_ + +#include "fna.h" // for fna_operations_t + +extern fna_operations_t frescan_fna_operations; + +#endif // _FRESCAN_FNA_H_ + diff --git a/src_frescan/frescan_frsh_fna.c b/src_frescan/frescan_bwres_frsh_fna.c similarity index 73% rename from src_frescan/frescan_frsh_fna.c rename to src_frescan/frescan_bwres_frsh_fna.c index c7bbbd6..93d108d 100644 --- a/src_frescan/frescan_frsh_fna.c +++ b/src_frescan/frescan_bwres_frsh_fna.c @@ -1,54 +1,18 @@ -//---------------------------------------------------------------------- -// Copyright (C) 2006 - 2007 by the FRESCOR consortium: -// -// Universidad de Cantabria, SPAIN -// University of York, UK -// Scuola Superiore Sant'Anna, ITALY -// Kaiserslautern University, GERMANY -// Univ. Politecnica Valencia, SPAIN -// Czech Technical University in Prague, CZECH REPUBLIC -// ENEA SWEDEN -// Thales Communication S.A. FRANCE -// Visual Tools S.A. SPAIN -// Rapita Systems Ltd UK -// Evidence ITALY -// -// See http://www.frescor.org -// -// The FRESCOR project (FP6/2005/IST/5-034026) is funded -// in part by the European Union Sixth Framework Programme -// The European Union is not liable of any use that may be -// made of this code. -// -// -// based on previous work (FSF) done in the FIRST project -// -// Copyright (C) 2005 Mälardalen University, SWEDEN -// Scuola Superiore S.Anna, ITALY -// Universidad de Cantabria, SPAIN -// University of York, UK -// -// This file is part of FNA (Frescor Network Adaptation) -// -// FNA is free software; you can redistribute it and/or modify it -// under terms of the GNU General Public License as published by the -// Free Software Foundation; either version 2, or (at your option) any -// later version. FNA 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 FNA; see file -// COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, -// Cambridge, MA 02139, USA. -// -// As a special exception, including FNA header files in a file, -// instantiating FNA generics or templates, or linking other files -// with FNA objects to produce an executable application, does not -// by itself cause the resulting executable application to be covered -// by the GNU General Public License. This exception does not -// however invalidate any other reasons why the executable file might be -// covered by the GNU Public License. -// ----------------------------------------------------------------------- +/*! + * @file frescan_bwres_frsh_fna.h + * + * @brief FRESCAN bandwidth reservation layer: FRSH FNA public functions + * + * This module contains FNA functions that need to be public mainly + * for mapping between network types and FNA or FRSH types. + * + * @version 0.01 + * + * @date 1-Apr-2008 + * + * @author Daniel Sangorrin + * + */ #include "frsh_fna.h" #include "frescan.h" diff --git a/src_frescan/frescan_negotiation_messages.c b/src_frescan/frescan_bwres_messages.c similarity index 98% rename from src_frescan/frescan_negotiation_messages.c rename to src_frescan/frescan_bwres_messages.c index 5d22a33..5e5225d 100644 --- a/src_frescan/frescan_negotiation_messages.c +++ b/src_frescan/frescan_bwres_messages.c @@ -1,10 +1,11 @@ /*! - * @file frescan_negotiation_messages.c + * @file frescan_bwres_messages.c * - * @brief FRESCAN negotiation messages format and operations + * @brief FRESCAN bandwidth reservation layer: negotiation messages formating * * This module contains the data types that define the FRESCAN negotiation - * message format and operations + * message format and operations to convert them into or from negotiation + * requests * * @version 0.01 * @@ -15,10 +16,10 @@ */ #include -#include "frescan_negotiation_messages.h" +#include "frescan_bwres_messages.h" #include "frescan_config.h" #include "frescan_debug.h" -#include "frescan_requests_queue.h" +#include "frescan_requests.h" #include "frescan_servers.h" /** diff --git a/src_frescan/frescan_bwres_messages.h b/src_frescan/frescan_bwres_messages.h new file mode 100644 index 0000000..c54d234 --- /dev/null +++ b/src_frescan/frescan_bwres_messages.h @@ -0,0 +1,31 @@ +/*! + * @file frescan_bwres_messages.h + * + * @brief FRESCAN bandwidth reservation layer: negotiation messages formating + * + * This module contains the data types that define the FRESCAN negotiation + * message format and operations to convert them into or from negotiation + * requests + * + * @version 0.01 + * + * @date 2-Apr-2008 + * + * @author Daniel Sangorrin + * + */ + +#ifndef _FRESCAN_NEGOTIATION_MESSAGES_H_ +#define _FRESCAN_NEGOTIATION_MESSAGES_H_ + +#include +#include "frescan_requests.h" +#include "frescan_data.h" + +extern int frescan_request_to_message(frescan_request_id_t id, // in + uint8_t *msg); // out + +extern int frescan_message_to_request(const uint8_t *msg, // in + frescan_request_id_t id); // in out + +#endif // _FRESCAN_NEGOTIATION_MESSAGES_H_ diff --git a/src_frescan/frescan_negotiation_threads.c b/src_frescan/frescan_bwres_threads.c similarity index 97% rename from src_frescan/frescan_negotiation_threads.c rename to src_frescan/frescan_bwres_threads.c index 51cf881..da7623e 100644 --- a/src_frescan/frescan_negotiation_threads.c +++ b/src_frescan/frescan_bwres_threads.c @@ -1,7 +1,7 @@ /*! - * @file frescan_negotiation_threads.h + * @file frescan_bwres_threads.c * - * @brief FRESCAN negotiation threads + * @brief FRESCAN bandwidth reservation layer: negotiation threads * * This module contains the acceptor threads and the master thread for local * negotiations, with functions to create them. @@ -16,12 +16,12 @@ #include #include "fosa_threads_and_signals.h" // fosa_thread_attr_init... -#include "frescan_negotiation_threads.h" +#include "frescan_bwres_threads.h" #include "frescan_config.h" #include "frescan_debug.h" #include "frescan_data.h" -#include "frescan_negotiation_messages.h" -#include "frescan_requests_queue.h" +#include "frescan_bwres_messages.h" +#include "frescan_requests.h" #include "frescan_servers.h" static void *frescan_acceptor_thread(void *arg); diff --git a/src_frescan/frescan_negotiation_threads.h b/src_frescan/frescan_bwres_threads.h similarity index 92% rename from src_frescan/frescan_negotiation_threads.h rename to src_frescan/frescan_bwres_threads.h index d4ba225..c3e78de 100644 --- a/src_frescan/frescan_negotiation_threads.h +++ b/src_frescan/frescan_bwres_threads.h @@ -1,7 +1,7 @@ /*! - * @file frescan_negotiation_threads.h + * @file frescan_bwres_threads.h * - * @brief FRESCAN negotiation threads + * @brief FRESCAN bandwidth reservation layer: negotiation threads * * This module contains the acceptor threads and the master thread for local * negotiations, with functions to create them. diff --git a/src_frescan/frescan_fna.h b/src_frescan/frescan_fna.h deleted file mode 100644 index a59908c..0000000 --- a/src_frescan/frescan_fna.h +++ /dev/null @@ -1,74 +0,0 @@ -//---------------------------------------------------------------------- -// Copyright (C) 2006 - 2007 by the FRESCOR consortium: -// -// Universidad de Cantabria, SPAIN -// University of York, UK -// Scuola Superiore Sant'Anna, ITALY -// Kaiserslautern University, GERMANY -// Univ. Politecnica Valencia, SPAIN -// Czech Technical University in Prague, CZECH REPUBLIC -// ENEA SWEDEN -// Thales Communication S.A. FRANCE -// Visual Tools S.A. SPAIN -// Rapita Systems Ltd UK -// Evidence ITALY -// -// See http://www.frescor.org -// -// The FRESCOR project (FP6/2005/IST/5-034026) is funded -// in part by the European Union Sixth Framework Programme -// The European Union is not liable of any use that may be -// made of this code. -// -// -// based on previous work (FSF) done in the FIRST project -// -// Copyright (C) 2005 Mälardalen University, SWEDEN -// Scuola Superiore S.Anna, ITALY -// Universidad de Cantabria, SPAIN -// University of York, UK -// -// This file is part of FNA (Frescor Network Adaptation) -// -// FNA is free software; you can redistribute it and/or modify it -// under terms of the GNU General Public License as published by the -// Free Software Foundation; either version 2, or (at your option) any -// later version. FNA 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 FNA; see file -// COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, -// Cambridge, MA 02139, USA. -// -// As a special exception, including FNA header files in a file, -// instantiating FNA generics or templates, or linking other files -// with FNA objects to produce an executable application, does not -// by itself cause the resulting executable application to be covered -// by the GNU General Public License. This exception does not -// however invalidate any other reasons why the executable file might be -// covered by the GNU Public License. -// ----------------------------------------------------------------------- - -//============================================== -// ******** **** ** ** -// **///// /**/** /** **** -// ** /**//** /** **//** -// ******* /** //** /** ** //** -// **//// /** //**/** ********** -// ** /** //****/**//////** -// ** /** //***/** /** -// / // /// // // -// -// FNA(Frescor Network Adaptation layer), pronounced "efe ene a" -//============================================================== - -#ifndef _FRESCAN_FNA_H_ -#define _FRESCAN_FNA_H_ - -#include "fna.h" // for fna_operations_t - -extern fna_operations_t frescan_fna_operations; - -#endif // _FRESCAN_FNA_H_ - diff --git a/src_frescan/frescan_negotiation_messages.h b/src_frescan/frescan_negotiation_messages.h deleted file mode 100644 index d869f68..0000000 --- a/src_frescan/frescan_negotiation_messages.h +++ /dev/null @@ -1,33 +0,0 @@ -/*! - * @file frescan_negotiation_messages.h - * - * @brief FRESCAN negotiation messages format and operations - * - * This module contains the data types that define the FRESCAN negotiation - * message format and operations - * - * @version 0.01 - * - * @date 2-Apr-2008 - * - * @author Daniel Sangorrin - * - */ - -#ifndef _FRESCAN_NEGOTIATION_MESSAGES_H_ -#define _FRESCAN_NEGOTIATION_MESSAGES_H_ - -#include -#include "frescan_requests_queue.h" -#include "frescan_data.h" - -extern int frescan_request_to_message(uint8_t *msg, - frescan_request_id_t id, - const frescan_contract_t *contract); - -extern int frescan_message_to_request(frescan_network_t net, - const uint8_t *msg, - size_t size, - frescan_node_t from); - -#endif // _FRESCAN_NEGOTIATION_MESSAGES_H_ diff --git a/src_frescan/frescan_reply_objects.c b/src_frescan/frescan_reply_objs.c similarity index 99% rename from src_frescan/frescan_reply_objects.c rename to src_frescan/frescan_reply_objs.c index d741397..5d8a991 100644 --- a/src_frescan/frescan_reply_objects.c +++ b/src_frescan/frescan_reply_objs.c @@ -1,5 +1,5 @@ /*! - * @file frescan_reply_objects.h + * @file frescan_reply_objs.h * * @brief FRESCAN reply objects * @@ -16,7 +16,7 @@ */ #include -#include "frescan_reply_objects.h" +#include "frescan_reply_objs.h" #include "fosa_mutexes_and_condvars.h" #include "frescan_config.h" #include "frescan_debug.h" diff --git a/src_frescan/frescan_reply_objects.h b/src_frescan/frescan_reply_objs.h similarity index 97% rename from src_frescan/frescan_reply_objects.h rename to src_frescan/frescan_reply_objs.h index e570baa..07bcdcd 100644 --- a/src_frescan/frescan_reply_objects.h +++ b/src_frescan/frescan_reply_objs.h @@ -1,5 +1,5 @@ /*! - * @file frescan_reply_objects.h + * @file frescan_reply_objs.h * * @brief FRESCAN reply objects * diff --git a/src_frescan/frescan_requests_queue.c b/src_frescan/frescan_requests.c similarity index 98% rename from src_frescan/frescan_requests_queue.c rename to src_frescan/frescan_requests.c index d17bb69..0ac95f3 100644 --- a/src_frescan/frescan_requests_queue.c +++ b/src_frescan/frescan_requests.c @@ -1,7 +1,7 @@ /*! - * @file frescan_requests_queue.c + * @file frescan_requests.c * - * @brief FRESCAN requests queue + * @brief FRESCAN requests * * This module contains an operation to create the queue, an operation to * enqueue a message (with a request), and an operation to @@ -18,7 +18,7 @@ #include #include #include "frescan.h" -#include "frescan_requests_queue.h" +#include "frescan_requests.h" #include "frescan_config.h" #include "frescan_debug.h" #include "fosa_mutexes_and_condvars.h" diff --git a/src_frescan/frescan_requests_queue.h b/src_frescan/frescan_requests.h similarity index 95% rename from src_frescan/frescan_requests_queue.h rename to src_frescan/frescan_requests.h index 3571201..7bbb6b5 100644 --- a/src_frescan/frescan_requests_queue.h +++ b/src_frescan/frescan_requests.h @@ -1,7 +1,7 @@ /*! - * @file frescan_requests_queue.h + * @file frescan_requests.h * - * @brief FRESCAN requests queue + * @brief FRESCAN requests * * This module contains an operation to create the queue, an operation to * enqueue a message (with a request), and an operation to @@ -20,7 +20,7 @@ #include #include "frescan_data.h" // frescan_contract_t -#include "frescan_reply_objects.h" // frescan_robj_id_t +#include "frescan_reply_objs.h" // frescan_robj_id_t typedef uint16_t frescan_request_id_t; /* 0 .. MX_REQUESTS */ -- 2.39.2