/usr/include/opal/h323/h323pdu.h is in libopal-dev 3.10.2~dfsg-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 | /*
* h323pdu.h
*
* H.323 protocol handler
*
* Open H323 Library
*
* Copyright (c) 1998-2001 Equivalence Pty. Ltd.
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
* the License for the specific language governing rights and limitations
* under the License.
*
* The Original Code is Open H323 Library.
*
* The Initial Developer of the Original Code is Equivalence Pty. Ltd.
*
* Portions of this code were written with the assisance of funding from
* Vovida Networks, Inc. http://www.vovida.com.
*
* Contributor(s): ______________________________________.
*
* $Revision: 24880 $
* $Author: rjongbloed $
* $Date: 2010-11-18 01:23:46 -0600 (Thu, 18 Nov 2010) $
*/
#ifndef OPAL_H323_H323PDU_H
#define OPAL_H323_H323PDU_H
#ifdef P_USE_PRAGMA
#pragma interface
#endif
#include <opal/buildopts.h>
#if OPAL_H323
#include <ptlib/sockets.h>
#include <h323/h323con.h>
#include <h323/transaddr.h>
#include <h323/q931.h>
#include <h323/h235auth.h>
#include <h323/h323trans.h>
#include <rtp/rtp.h>
#include <asn/h225.h>
#include <asn/h245.h>
class H323Connection;
class H323TransportAddress;
class H225_RAS;
class OpalGloballyUniqueID;
#define H225_PROTOCOL_VERSION 6
#define H245_PROTOCOL_VERSION 13
///////////////////////////////////////////////////////////////////////////////
/**Wrapper class for the H323 signalling channel.
*/
class H323SignalPDU : public H225_H323_UserInformation
{
PCLASSINFO(H323SignalPDU, H225_H323_UserInformation);
public:
/**@name Construction */
//@{
/**Create a new H.323 signalling channel (H.225/Q.931) PDU.
*/
H323SignalPDU();
/**Build a SETUP message.
*/
H225_Setup_UUIE & BuildSetup(
const H323Connection & connection, ///< Connection PDU is generated for
const H323TransportAddress & destAddr ///< Destination address for packet
);
/**Build a CALL-PROCEEDING message.
*/
H225_CallProceeding_UUIE & BuildCallProceeding(
const H323Connection & connection ///< Connection PDU is generated for
);
/**Build a CONNECT message.
*/
H225_Connect_UUIE & BuildConnect(
const H323Connection & connection ///< Connection PDU is generated for
);
/**Build a CONNECT message with H.245 address.
*/
H225_Connect_UUIE & BuildConnect(
const H323Connection & connection, ///< Connection PDU is generated for
const PIPSocket::Address & h245Address, ///< H.245 IP address
WORD port ///< H.245 TCP port
);
/**Build an ALERTING message.
*/
H225_Alerting_UUIE & BuildAlerting(
const H323Connection & connection ///< Connection PDU is generated for
);
/**Build a INFORMATION message.
*/
H225_Information_UUIE & BuildInformation(
const H323Connection & connection ///< Connection PDU is generated for
);
/**Build a RELEASE-COMPLETE message.
*/
H225_ReleaseComplete_UUIE & BuildReleaseComplete(
const H323Connection & connection ///< Connection PDU is generated for
);
/**Build a FACILITY message.
*/
H225_Facility_UUIE * BuildFacility(
const H323Connection & connection, ///< Connection PDU is generated for
bool empty, ///< Flag for empty facility message
unsigned reason = H225_FacilityReason::e_undefinedReason ///< Reason for Facility
);
/**Build a PROGRESS message.
*/
H225_Progress_UUIE & BuildProgress(
const H323Connection & connection ///< Connection PDU is generated for
);
/**Build a STATUS message.
*/
H225_Status_UUIE & BuildStatus(
const H323Connection & connection ///< Connection PDU is generated for
);
/**Build a STATUS-INQUIRY message.
*/
H225_StatusInquiry_UUIE & BuildStatusInquiry(
const H323Connection & connection ///< Connection PDU is generated for
);
/**Build a SETUP-ACKNOWLEDGE message.
*/
H225_SetupAcknowledge_UUIE & BuildSetupAcknowledge(
const H323Connection & connection ///< Connection PDU is generated for
);
/**Build a NOTIFY message.
*/
H225_Notify_UUIE & BuildNotify(
const H323Connection & connection ///< Connection PDU is generated for
);
//@}
/**@name Operations */
//@{
/**Print PDU to stream.
*/
void PrintOn(
ostream & strm
) const;
/**Read PDU from the specified transport.
*/
PBoolean Read(
H323Transport & transport ///< Transport to read from
);
/**Write the PDU to the transport.
*/
PBoolean Write(
H323Transport & transport ///< Transport to write to
);
/**Get the Q.931 wrapper PDU for H.225 signalling PDU.
*/
const Q931 & GetQ931() const { return q931pdu; }
/**Get the Q.931 wrapper PDU for H.225 signalling PDU.
*/
Q931 & GetQ931() { return q931pdu; }
/**Set the Q.931 wrapper PDU for H.225 signalling PDU
*/
void SetQ931(const Q931 & _q931pdu) { q931pdu = _q931pdu; }
/**Build the Q.931 wrapper PDU for H.225 signalling PDU.
This must be called after altering fields in the H.225 part of the PDU.
If it has never been done, then the Write() functions will do so.
*/
void BuildQ931();
/**Get the source alias names for the remote endpoint.
This returns a human readable set of names that was provided by the
remote endpoint to identify it, eg phone number, display name etc etc
*/
PString GetSourceAliases(
const H323Transport * transport = NULL ///< Transport PDU was read from.
) const;
/**Get the destination alias name(s) for the local endpoint.
The alias returned here can be used to determine the routing of an
incoming connection.
*/
PString GetDestinationAlias(
PBoolean firstAliasOnly = false ///< Only return the first possible alias
) const;
/**Get the source endpoints identification as a phone number.
This returns false if the remote never provided any alias or Q.931
field that indicated a valid e.164 telephone number.
*/
PBoolean GetSourceE164(
PString & number ///< String to receive number
) const;
/**Get the destiation phone number.
This returns false if the remote never provided any alias or Q.931
field that indicated a valid e.164 telephone number.
*/
PBoolean GetDestinationE164(
PString & number ///< String to receive number
) const;
/**Get the distinctive ring code if present.
This returns zero if no distinctive ring information is provided.
*/
unsigned GetDistinctiveRing() const;
/**Set the Q.931 fields in the PDU.
This sets the default values for various fields, eg caller party number
into the Q.931 from the supplied connection.
*/
void SetQ931Fields(
const H323Connection & connection,
bool insertPartyNumbers = false
);
#ifdef OPAL_H460
/** When sending the H460 message in the Setup PDU you have to ensure
the ARQ is received first then add the Fields to the Setup PDU
so we require a call back
*/
void InsertH460Setup(
const H323Connection & connection,
H225_Setup_UUIE & setup
);
#endif
protected:
// Even though we generally deal with the H323 protocol (H225) it is
// actually contained within a field of the Q931 protocol.
Q931 q931pdu;
};
/////////////////////////////////////////////////////////////////////////////
/**Wrapper class for the H323 control channel.
*/
class H323ControlPDU : public H245_MultimediaSystemControlMessage
{
PCLASSINFO(H323ControlPDU, H245_MultimediaSystemControlMessage);
public:
H245_RequestMessage & Build(H245_RequestMessage ::Choices request);
H245_ResponseMessage & Build(H245_ResponseMessage ::Choices response);
H245_CommandMessage & Build(H245_CommandMessage ::Choices command);
H245_IndicationMessage & Build(H245_IndicationMessage::Choices indication);
H245_MasterSlaveDetermination & BuildMasterSlaveDetermination(
unsigned terminalType,
unsigned statusDeterminationNumber
);
H245_MasterSlaveDeterminationAck & BuildMasterSlaveDeterminationAck(
PBoolean isMaster
);
H245_MasterSlaveDeterminationReject & BuildMasterSlaveDeterminationReject(
unsigned cause
);
H245_TerminalCapabilitySet & BuildTerminalCapabilitySet(
const H323Connection & connection,
unsigned sequenceNumber,
PBoolean empty
);
H245_TerminalCapabilitySetAck & BuildTerminalCapabilitySetAck(
unsigned sequenceNumber
);
H245_TerminalCapabilitySetReject & BuildTerminalCapabilitySetReject(
unsigned sequenceNumber,
unsigned cause
);
H245_OpenLogicalChannel & BuildOpenLogicalChannel(
unsigned forwardLogicalChannelNumber
);
H245_RequestChannelClose & BuildRequestChannelClose(
unsigned channelNumber,
unsigned reason
);
H245_CloseLogicalChannel & BuildCloseLogicalChannel(
unsigned channelNumber
);
H245_OpenLogicalChannelAck & BuildOpenLogicalChannelAck(
unsigned channelNumber
);
H245_OpenLogicalChannelReject & BuildOpenLogicalChannelReject(
unsigned channelNumber,
unsigned cause
);
H245_OpenLogicalChannelConfirm & BuildOpenLogicalChannelConfirm(
unsigned channelNumber
);
H245_CloseLogicalChannelAck & BuildCloseLogicalChannelAck(
unsigned channelNumber
);
H245_RequestChannelCloseAck & BuildRequestChannelCloseAck(
unsigned channelNumber
);
H245_RequestChannelCloseReject & BuildRequestChannelCloseReject(
unsigned channelNumber
);
H245_RequestChannelCloseRelease & BuildRequestChannelCloseRelease(
unsigned channelNumber
);
H245_RequestMode & BuildRequestMode(
unsigned sequenceNumber
);
H245_RequestModeAck & BuildRequestModeAck(
unsigned sequenceNumber,
unsigned response
);
H245_RequestModeReject & BuildRequestModeReject(
unsigned sequenceNumber,
unsigned cause
);
H245_RoundTripDelayRequest & BuildRoundTripDelayRequest(
unsigned sequenceNumber
);
H245_RoundTripDelayResponse & BuildRoundTripDelayResponse(
unsigned sequenceNumber
);
H245_UserInputIndication & BuildUserInputIndication(
const PString & value
);
H245_UserInputIndication & BuildUserInputIndication(
char tone, ///< DTMF tone code
unsigned duration, ///< Duration of tone in milliseconds
unsigned logicalChannel, ///< Logical channel number for RTP sync.
unsigned rtpTimestamp ///< RTP timestamp in logical channel sync.
);
H245_MiscellaneousCommand & BuildMiscellaneousCommand(
unsigned channelNumber,
unsigned type
);
H245_FlowControlCommand & BuildFlowControlCommand(
unsigned channelNumber,
unsigned maxBitRate
);
H245_MiscellaneousIndication & BuildMiscellaneousIndication(
unsigned channelNumber,
unsigned type
);
H245_GenericMessage & BuildGenericRequest(
const PString & identifier,
unsigned subMsgId
);
H245_GenericMessage & BuildGenericResponse(
const PString & identifier,
unsigned subMsgId
);
H245_GenericMessage & BuildGenericCommand(
const PString & identifier,
unsigned subMsgId
);
H245_GenericMessage & BuildGenericIndication(
const PString & identifier,
unsigned subMsgId
);
H245_FunctionNotUnderstood & BuildFunctionNotUnderstood(
const H323ControlPDU & pdu
);
H245_EndSessionCommand & BuildEndSessionCommand(
unsigned reason
);
};
/////////////////////////////////////////////////////////////////////////////
/**Wrapper class for the H323 gatekeeper RAS channel.
*/
class H323RasPDU : public H225_RasMessage, public H323TransactionPDU
{
PCLASSINFO(H323RasPDU, H225_RasMessage);
public:
H323RasPDU();
H323RasPDU(
const H235Authenticators & authenticators
);
// overrides from PObject
virtual PObject * Clone() const;
// overrides from H323TransactionPDU
virtual PASN_Object & GetPDU();
virtual PASN_Choice & GetChoice();
virtual const PASN_Object & GetPDU() const;
virtual const PASN_Choice & GetChoice() const;
virtual unsigned GetSequenceNumber() const;
virtual unsigned GetRequestInProgressDelay() const;
#if PTRACING
virtual const char * GetProtocolName() const;
#endif
virtual H323TransactionPDU * ClonePDU() const;
virtual void DeletePDU();
// new functions
H225_GatekeeperRequest & BuildGatekeeperRequest(unsigned seqNum);
H225_GatekeeperConfirm & BuildGatekeeperConfirm(unsigned seqNum);
H225_GatekeeperReject & BuildGatekeeperReject(unsigned seqNum, unsigned reason = H225_GatekeeperRejectReason::e_undefinedReason);
H225_RegistrationRequest & BuildRegistrationRequest(unsigned seqNum);
H225_RegistrationConfirm & BuildRegistrationConfirm(unsigned seqNum);
H225_RegistrationReject & BuildRegistrationReject(unsigned seqNum, unsigned reason = H225_RegistrationRejectReason::e_undefinedReason);
H225_UnregistrationRequest & BuildUnregistrationRequest(unsigned seqNum);
H225_UnregistrationConfirm & BuildUnregistrationConfirm(unsigned seqNum);
H225_UnregistrationReject & BuildUnregistrationReject(unsigned seqNum, unsigned reason = H225_UnregRejectReason::e_undefinedReason);
H225_LocationRequest & BuildLocationRequest(unsigned seqNum);
H225_LocationConfirm & BuildLocationConfirm(unsigned seqNum);
H225_LocationReject & BuildLocationReject(unsigned seqNum, unsigned reason = H225_LocationRejectReason::e_undefinedReason);
H225_AdmissionRequest & BuildAdmissionRequest(unsigned seqNum);
H225_AdmissionConfirm & BuildAdmissionConfirm(unsigned seqNum);
H225_AdmissionReject & BuildAdmissionReject(unsigned seqNum, unsigned reason = H225_AdmissionRejectReason::e_undefinedReason);
H225_DisengageRequest & BuildDisengageRequest(unsigned seqNum);
H225_DisengageConfirm & BuildDisengageConfirm(unsigned seqNum);
H225_DisengageReject & BuildDisengageReject(unsigned seqNum, unsigned reason = H225_DisengageRejectReason::e_securityDenial);
H225_BandwidthRequest & BuildBandwidthRequest(unsigned seqNum);
H225_BandwidthConfirm & BuildBandwidthConfirm(unsigned seqNum, unsigned bandwidth = 0);
H225_BandwidthReject & BuildBandwidthReject(unsigned seqNum, unsigned reason = H225_BandRejectReason::e_undefinedReason);
H225_InfoRequest & BuildInfoRequest(unsigned seqNum, unsigned callRef = 0, const OpalGloballyUniqueID * id = NULL);
H225_InfoRequestResponse & BuildInfoRequestResponse(unsigned seqNum);
H225_InfoRequestAck & BuildInfoRequestAck(unsigned seqNum);
H225_InfoRequestNak & BuildInfoRequestNak(unsigned seqNum, unsigned reason = H225_InfoRequestNakReason::e_undefinedReason);
H225_ServiceControlIndication& BuildServiceControlIndication(unsigned seqNum, const OpalGloballyUniqueID * id = NULL);
H225_ServiceControlResponse & BuildServiceControlResponse(unsigned seqNum);
H225_UnknownMessageResponse & BuildUnknownMessageResponse(unsigned seqNum);
H225_RequestInProgress & BuildRequestInProgress(unsigned seqNum, unsigned delay);
};
/////////////////////////////////////////////////////////////////////////////
void H323SetAliasAddresses(const H323TransportAddressArray & addresses, H225_ArrayOf_AliasAddress & aliases);
void H323SetAliasAddresses(const PStringArray & names, H225_ArrayOf_AliasAddress & aliases, int tag = -1);
void H323SetAliasAddresses(const PStringList & names, H225_ArrayOf_AliasAddress & aliases, int tag = -1);
void H323SetAliasAddress(const H323TransportAddress & address, H225_AliasAddress & alias);
void H323SetAliasAddress(const PString & name, H225_AliasAddress & alias, int tag = -1);
PStringArray H323GetAliasAddressStrings(const H225_ArrayOf_AliasAddress & aliases);
PString H323GetAliasAddressString(const H225_AliasAddress & alias);
PString H323GetAliasAddressE164(const H225_AliasAddress & alias);
PString H323GetAliasAddressE164(const H225_ArrayOf_AliasAddress & aliases);
H323Connection::CallEndReason H323TranslateToCallEndReason(
Q931::CauseValues cause,
unsigned reason
);
Q931::CauseValues H323TranslateFromCallEndReason(
H323Connection::CallEndReason callEndReason,
H225_ReleaseCompleteReason & releaseCompleteReason
);
void H323GetApplicationInfo(OpalProductInfo & info, const H225_VendorIdentifier & vendor);
void H323SetRTPPacketization(
H245_ArrayOf_RTPPayloadType & rtpPacketizations,
PINDEX & packetizationsCount,
const OpalMediaFormat & mediaFormat,
RTP_DataFrame::PayloadTypes payloadType
);
bool H323SetRTPPacketization(
H245_RTPPayloadType & rtpPacketization,
const OpalMediaFormat & mediaFormat,
RTP_DataFrame::PayloadTypes payloadType
);
bool H323SetRTPPacketization(
H245_RTPPayloadType & rtpPacketization,
const PString & mediaPacketizationString,
const OpalMediaFormat & mediaFormat,
RTP_DataFrame::PayloadTypes payloadType
);
PString H323GetRTPPacketization(
const H245_RTPPayloadType & rtpPacketization
);
PString H323GetCapabilityIdentifier(
const H245_CapabilityIdentifier & capId
);
bool H323SetCapabilityIdentifier(
const PString & str,
H245_CapabilityIdentifier & capId
);
const H245_ParameterValue * H323GetGenericParameter(
const H245_ArrayOf_GenericParameter & params,
unsigned ordinal
);
bool H323GetGenericParameterBoolean(
const H245_ArrayOf_GenericParameter & params,
unsigned ordinal
);
unsigned H323GetGenericParameterInteger(
const H245_ArrayOf_GenericParameter & params,
unsigned ordinal,
unsigned defValue = 0,
H245_ParameterValue::Choices subType = H245_ParameterValue::e_unsignedMin
);
H245_ParameterValue * H323AddGenericParameter(
H245_ArrayOf_GenericParameter & params,
unsigned ordinal,
bool reorder = true
);
void H323AddGenericParameterBoolean(
H245_ArrayOf_GenericParameter & params,
unsigned ordinal,
bool value = true,
bool reorder = true
);
void H323AddGenericParameterInteger(
H245_ArrayOf_GenericParameter & params,
unsigned ordinal,
unsigned value,
H245_ParameterValue::Choices subType = H245_ParameterValue::e_unsignedMin,
bool reorder = true
);
void H323AddGenericParameterString(
H245_ArrayOf_GenericParameter & params,
unsigned ordinal,
const PString & value,
bool reorder = true
);
void H323AddGenericParameterOctets(
H245_ArrayOf_GenericParameter & params,
unsigned ordinal,
const PBYTEArray & value,
bool reorder = true
);
#if PTRACING
void H323TraceDumpPDU(
const char * proto,
PBoolean writing,
const PBYTEArray & rawData,
const PASN_Object & pdu,
const PASN_Choice & tag1,
unsigned seqNum
);
#else
#define H323TraceDumpPDU(proto, writing, rawData, pdu, tag1, seqNum)
#endif
#endif // OPAL_H323
#endif // OPAL_H323_H323PDU_H
/////////////////////////////////////////////////////////////////////////////
|