mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
824 B
C
42 lines
824 B
C
4 years ago
|
/**
|
||
5 years ago
|
*
|
||
4 years ago
|
* \section COPYRIGHT
|
||
5 years ago
|
*
|
||
4 years ago
|
* Copyright 2013-2021 Software Radio Systems Limited
|
||
5 years ago
|
*
|
||
4 years ago
|
* 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.
|
||
5 years ago
|
*
|
||
|
*/
|
||
|
|
||
4 years ago
|
#ifndef SRSRAN_RLC_AM_BASE_H
|
||
|
#define SRSRAN_RLC_AM_BASE_H
|
||
5 years ago
|
|
||
4 years ago
|
#include "srsran/common/buffer_pool.h"
|
||
|
#include "srsran/common/common.h"
|
||
|
#include "srsran/upper/byte_buffer_queue.h"
|
||
|
#include "srsran/upper/rlc_common.h"
|
||
5 years ago
|
#include <map>
|
||
|
#include <mutex>
|
||
|
#include <pthread.h>
|
||
|
#include <queue>
|
||
|
|
||
4 years ago
|
namespace srsran {
|
||
5 years ago
|
|
||
|
///< Add rlc_am_base here
|
||
|
|
||
5 years ago
|
bool rlc_am_is_control_pdu(uint8_t* payload);
|
||
|
bool rlc_am_is_control_pdu(byte_buffer_t* pdu);
|
||
|
|
||
4 years ago
|
} // namespace srsran
|
||
5 years ago
|
|
||
4 years ago
|
namespace srsue {
|
||
|
|
||
|
class pdcp_interface_rlc;
|
||
|
class rrc_interface_rlc;
|
||
|
|
||
|
} // namespace srsue
|
||
|
|
||
4 years ago
|
#endif // SRSRAN_RLC_AM_BASE_H
|