Skip to content

Instantly share code, notes, and snippets.

@eventhelix
Created March 10, 2015 02:02
Show Gist options
  • Save eventhelix/305afb09e4e5f40bb150 to your computer and use it in GitHub Desktop.
Save eventhelix/305afb09e4e5f40bb150 to your computer and use it in GitHub Desktop.
class DigitTrunk
{
Status m_status;
Timeslot m_timeslot[MAX_TIMESLOT_PER_TRUNK];
int m_signalingTimeslot;
int m_signalingStatus;
. . .
int m_errorThreshold;
int m_localErrorRate;
int m_remoteErrorRate;
. . .
public:
. . .
void HandleSignalingRequest();
void SendSignalingIndication();
. . .
void HandleRemoteError();
void HandleLocalError();
. . .
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment