Commit fe8b2602 authored by garciay's avatar garciay
Browse files

Create codet for MSRP protocol

parent 6cd9b435
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
#include "gen_classes.h"
#include "Regex.h"
#include <iostream>
#include <fstream>

namespace t3devlib { namespace gen {

// YGA: For debug purpose
/*{
	std::ofstream logfile("C:\\Temp\\LibMsrp.log", ios::app);
	logfile << "CaptureSource::PreEncodeField: " << field_id << std::endl;
	logfile.close();
}*/

//
// Implementation of the decoder for MSRP
//

// MSRP quoted strings messages allow multiple ways of representing
// some characters (raw unicode or escaped). This function is used
// to normalise the content so that two equivalent representation
// will result in the same TTCN-3 charstring.
//

// TODO To be implemented

}} // namespaces
+13 −0
Original line number Diff line number Diff line
#ifndef  MSRPCODETS_H
#define  MSRPCODETS_H
#include <t3devlib/t3devlib.h>

namespace t3devlib {
namespace gen {

// TODO To be implemented

}} //namespaces

#endif