srsLTE/lib/include/srsran/upper/rlc_am_base.h

42 lines
824 B
C
Raw Normal View History

/**
*
* \section COPYRIGHT
*
2021-03-19 03:45:56 -07:00
* Copyright 2013-2021 Software Radio Systems Limited
*
* By using this file, you agree to the terms and conditions set
* forth in the LICENSE file which can be found at the top level of
* the distribution.
*
*/
2021-03-19 03:45:56 -07:00
#ifndef SRSRAN_RLC_AM_BASE_H
#define SRSRAN_RLC_AM_BASE_H
2021-03-19 03:45:56 -07:00
#include "srsran/common/buffer_pool.h"
#include "srsran/common/common.h"
#include "srsran/upper/byte_buffer_queue.h"
#include "srsran/upper/rlc_common.h"
#include <map>
#include <mutex>
#include <pthread.h>
#include <queue>
2021-03-19 03:45:56 -07:00
namespace srsran {
///< Add rlc_am_base here
bool rlc_am_is_control_pdu(uint8_t* payload);
bool rlc_am_is_control_pdu(byte_buffer_t* pdu);
2021-03-19 03:45:56 -07:00
} // namespace srsran
2021-02-26 01:40:41 -08:00
namespace srsue {
class pdcp_interface_rlc;
class rrc_interface_rlc;
} // namespace srsue
2021-03-19 03:45:56 -07:00
#endif // SRSRAN_RLC_AM_BASE_H