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.
46 lines
874 B
C
46 lines
874 B
C
4 years ago
|
/**
|
||
6 years ago
|
*
|
||
4 years ago
|
* \section COPYRIGHT
|
||
6 years ago
|
*
|
||
4 years ago
|
* Copyright 2013-2021 Software Radio Systems Limited
|
||
6 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.
|
||
6 years ago
|
*
|
||
|
*/
|
||
|
|
||
4 years ago
|
#ifndef SRSRAN_NAS_PCAP_H
|
||
|
#define SRSRAN_NAS_PCAP_H
|
||
7 years ago
|
|
||
4 years ago
|
#include "srsran/common/pcap.h"
|
||
4 years ago
|
#include <string>
|
||
7 years ago
|
|
||
4 years ago
|
namespace srsran {
|
||
7 years ago
|
|
||
|
class nas_pcap
|
||
|
{
|
||
|
public:
|
||
5 years ago
|
nas_pcap()
|
||
|
{
|
||
|
enable_write = false;
|
||
|
ue_id = 0;
|
||
|
pcap_file = NULL;
|
||
|
}
|
||
|
void enable();
|
||
4 years ago
|
uint32_t open(std::string filename_, uint32_t ue_id = 0);
|
||
5 years ago
|
void close();
|
||
|
void write_nas(uint8_t* pdu, uint32_t pdu_len_bytes);
|
||
|
|
||
7 years ago
|
private:
|
||
4 years ago
|
bool enable_write;
|
||
|
std::string filename;
|
||
|
FILE* pcap_file;
|
||
|
uint32_t ue_id;
|
||
|
void pack_and_write(uint8_t* pdu, uint32_t pdu_len_bytes);
|
||
7 years ago
|
};
|
||
|
|
||
4 years ago
|
} // namespace srsran
|
||
7 years ago
|
|
||
4 years ago
|
#endif // SRSRAN_NAS_PCAP_H
|