srsLTE/lib/include/srsran/common/rlc_pcap.h

55 lines
1.3 KiB
C
Raw Normal View History

/**
2018-03-23 08:46:28 -07:00
*
* \section COPYRIGHT
2018-03-23 08:46:28 -07:00
*
2021-03-19 03:45:56 -07:00
* Copyright 2013-2021 Software Radio Systems Limited
2018-03-23 08:46:28 -07:00
*
* 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.
2018-03-23 08:46:28 -07:00
*
*/
#ifndef RLCPCAP_H
#define RLCPCAP_H
2021-03-19 03:45:56 -07:00
#include "srsran/common/pcap.h"
#include "srsran/interfaces/rlc_interface_types.h"
#include <stdint.h>
2018-03-23 08:46:28 -07:00
2021-03-19 03:45:56 -07:00
namespace srsran {
2018-03-23 08:46:28 -07:00
class rlc_pcap
{
public:
rlc_pcap() {}
2018-03-23 08:46:28 -07:00
void enable(bool en);
void open(const char* filename, rlc_config_t config);
2018-03-23 08:46:28 -07:00
void close();
void set_ue_id(uint16_t ue_id);
void write_dl_ccch(uint8_t* pdu, uint32_t pdu_len_bytes);
void write_ul_ccch(uint8_t* pdu, uint32_t pdu_len_bytes);
2018-03-23 08:46:28 -07:00
private:
bool enable_write = false;
FILE* pcap_file = nullptr;
uint32_t ue_id = 0;
uint8_t mode = 0;
uint8_t sn_length = 0;
void pack_and_write(uint8_t* pdu,
uint32_t pdu_len_bytes,
uint8_t mode,
uint8_t direction,
uint8_t priority,
uint8_t seqnumberlength,
uint16_t ueid,
uint16_t channel_type,
uint16_t channel_id);
2018-03-23 08:46:28 -07:00
};
2021-03-19 03:45:56 -07:00
} // namespace srsran
2018-03-23 08:46:28 -07:00
#endif // RLCPCAP_H