Search found 1 match

by saeed.zamani
Mon Nov 04, 2013 8:08 am
Forum: H.323 Plus (Open Source H.323 Stack)
Topic: How to decode H245 Request packet?
Replies: 0
Views: 7446

How to decode H245 Request packet?

I've got a H245 hex stream like this: char pkt5[] = {0x01, 0x00, 0x32, 0x80, 0x37, 0x82, 0xde}; with: terminalType: 50 statusDeterminationNumber: 3637982 How can I decode this stream? I tried the following code but got no correct result? PPER_Stream strm((const BYTE*)pkt5, 7, true); H245_MasterSlave...