This file is indexed.

/usr/include/sipxtapi/rtcp/SourceDescription.h is in libsipxtapi-dev 3.3.0~test17-1.

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
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
//  
// Copyright (C) 2006-2013 SIPez LLC.  All rights reserved.
//
// Copyright (C) 2004-2006 SIPfoundry Inc.
// Licensed by SIPfoundry under the LGPL license.
//
// Copyright (C) 2004-2006 Pingtel Corp.  All rights reserved.
// Licensed to SIPfoundry under a Contributor Agreement.
//
// $$
///////////////////////////////////////////////////////////////////////////////


//  Border Guard
#ifndef _SourceDescription_h
#define _SourceDescription_h

#include "rtcp/RtcpConfig.h"

//  Includes
#include "BaseClass.h"
#include "RTCPHeader.h"
#include "ISDESReport.h"
#include "ISetSrcDescription.h"
#include "IGetSrcDescription.h"


/**
 *
 * Class Name:  CSourceDescription
 *
 * Inheritance: CBaseClass          - Base Class Implementation
 *              CBaseRTCPClass      - RTCP Reporting Base Class Implementation
 *
 *
 * Interfaces:  ISDESReport,        - SDES Reporting interface
 *              ISetSrcDescription  - Set Source Description Interface
 *              IGetSrcDescription  - Get Source Description Interface
 *
 * Description: The CSourceDescription Class manages source description
 *              information passed by called participants through RTCP Source
 *              Description (SDES) Reports while in a VOIP call.
 *
 * Notes:       CSourceDescription is derived from CBaseClass which provides
 *              basic Initialization and reference counting support.
 *
 */
class CSourceDescription:
          public CBaseClass,        // Inherits the CBaseClass implementation
          public CRTCPHeader,       // Inherits the CRTCPHeader implementation
          public ISDESReport,       // Interface exposed for SDES Reporting
          public ISetSrcDescription,
                        // Interface exposed for modifying Source Description
          public IGetSrcDescription 
                        // Interface exposed for retrieving Source Description
 {

//  Public Methods
public:

/**
 *
 * Method Name:  CSourceDescription() - Constructor
 *
 *
 * Inputs:      ssrc_t   ulSSRC       - SSRC ID
 *              unsigned char  *puchName     - NAME field
 *              unsigned char  *puchEmail    - EMAIL field
 *              unsigned char  *puchPhone    - PHONE field
 *              unsigned char  *puchAppName  - APPLICATION NAME
 *              unsigned char  *puchLocation - LOCATION field
 *              unsigned char  *puchNotes    - NOTES field
 *              unsigned char  *puchPrivate  - PRIVATE field
 *
 * Outputs:     None
 *
 * Returns:     None
 *
 * Description: Performs CSourceDescription object initialization.  This
 *              constructor shall be called to form a Source Description
 *              identifying a local Pingtel phone set.
 *
 * Usage Notes: Performs default assignment of any arguments that may not be
 *              known at construction time.  The least likely known at
 *              construction time are placed at the end of the construction
 *              list.
 *
 */
    CSourceDescription(ssrc_t ulSSRC=0,
                       unsigned char *puchName=NULL,
                       unsigned char *puchEmail=NULL,
                       unsigned char *puchPhone=NULL,
                       unsigned char *puchLocation=NULL,
                       unsigned char *puchAppName=NULL,
                       unsigned char *puchNotes=NULL,
                       unsigned char *puchPrivate=NULL);

/**
 *
 * Method Name:  CSourceDescription() - Constructor
 *
 *
 * Inputs:      bool bHeader
 *                      - TRUE indicates a header precedes the SDES field info
 *              unsigned char *puchSDESReport
 *                           - An SDES Report received from a call participant
 *
 * Outputs:     None
 *
 * Returns:     None
 *
 * Description: Performs CSourceDescription object initialization.  This
 *              constructor shall be called to construct a Source Description
 *              object identifying a FE call participant.  The event interests
 *              register and notification interface passed shall be used to
 *              generate events and deliver them to their intended recipients.
 *
 * Usage Notes: Performs default assignment of any arguments that may not be
 *              known at construction time.
 *
 *              Uses wide character format for internationalization purposes.
 */
    CSourceDescription(bool bHeader, unsigned char *puchSDESReport=NULL);


/**
 *
 * Method Name: ~CSourceDescription() - Destructor
 *
 *
 * Inputs:      None
 *
 * Outputs:     None
 *
 * Returns:     None
 *
 * Description: Shall deallocate and/or release all resources which was
 *              acquired over the course of runtime.
 *
 * Usage Notes:
 *
 *
 */
    ~CSourceDescription(void);


/**
 *
 * Method Name:  GetLocalSDES()
 *
 * Inputs:       None
 *
 * Outputs:      None
 *
 * Returns:      CSourceDescription *poSourceDescription
 *                       - Pointer to Local Source Description Interface
 *
 * Description:  A static member function used to obtain a Source Description
 *               interface.
 *
 * Usage Notes:  This method shall cause the local Source Description Singleton
 *               object to be created if it has not already been instantiated.
 *
 */
    static CSourceDescription *GetLocalSDES(void);
/**
 *
 * Method Name:  SetAllComponents()
 *
 *
 * Inputs:      unsigned char *puchName      - NAME field
 *              unsigned char *puchEmail     - EMAIL field
 *              unsigned char *puchPhone     - PHONE field
 *              unsigned char *puchAppName   - APPLICATION NAME
 *              unsigned char *puchLocation  - LOCATION field
 *              unsigned char *puchNotes     - NOTES field
 *              unsigned char *puchPrivate   - PRIVATE field
 *
 * Outputs:     None
 *
 * Returns:     None
 *
 * Description: Performs a bulk set upon all the constituent elements composing
 *              a Source Description.
 *
 * Usage Notes: Performs default assignment of any arguments that may not be
 *              provided at assignment time.  The least likely known are placed
 *              at the end of the assignment list.
 *
 *              All elements passed must be NULL terminated.
 *
 */
    void SetAllComponents(unsigned char *puchName=NULL,
                          unsigned char *puchEmail=NULL,
                          unsigned char *puchPhone=NULL,
                          unsigned char *puchLocation=NULL,
                          unsigned char *puchAppName=NULL,
                          unsigned char *puchNotes=NULL,
                          unsigned char *puchPrivate=NULL);

/**
 *
 * Method Name:  GetAllComponents()
 *
 *
 * Inputs:      unsigned char          *puchName         - NAME field
 *              unsigned char          *puchEmail        - EMAIL field
 *              unsigned char          *puchPhone        - PHONE field
 *              unsigned char          *puchAppName      - APPLICATION NAME
 *              unsigned char          *puchLocation     - LOCATION field
 *              unsigned char          *puchNotes        - NOTES field
 *              unsigned char          *puchPrivate      - PRIVATE field
 *
 * Outputs:     None
 *
 * Returns:     None
 *
 * Description: Performs a bulk get upon all the constituent elements composing
 *              a Source Description.
 *
 * Usage Notes: The elements retrieved are NULL terminated.
 *
 */
    void GetAllComponents(unsigned char *puchName,
                          unsigned char *puchEmail,
                          unsigned char *puchPhone,
                          unsigned char *puchLocation,
                          unsigned char *puchAppName,
                          unsigned char *puchNotes,
                          unsigned char *puchPrivate);

/**
 *
 * Method Name:  GetFieldChange
 *
 *
 * Input:       unsigned long  ulChangeMask
 *                    - A mask identifying the changed field in an SDES Report
 *
 * Outputs:     unsigned long *pulFieldType
 *                               - The Field Identifier present in change mask
 *              unsigned char *puchReportBuffer
 *                               - Character Buffer to store contents of field
 *
 * Returns:     unsigned long - The modified change mask
 *
 * Description: Gets a field from an SDES Report based upon the change mask
 *              passed.  A field present within the change mask shall have its
 *              ID and field contents loaded as output arguments to this call.
 *              The change mask shall be modified to reflect the removal of
 *              the field change that is being returned.
 *
 * Usage Notes: This may be called multiple times to extract all the changes
 *              from an SDES report.  No more changes are available once the
 *              mask has a value of 0.
 *
 *
 */
    unsigned long GetFieldChange(unsigned long ulChangeMask,
                                 unsigned long *pulFieldType,
                                 unsigned char *puchFieldBuffer);


/**
 *
 * Method Name:  GetSSRC
 *
 *
 * Inputs:       None
 *
 *
 * Outputs:      None
 *
 * Returns:     ssrc_t - The SSRC of the Bye Report
 *
 * Description: Returns the SSRC Associated with the Bye Report.
 *
 * Usage Notes:
 *
 *
 */
    virtual ssrc_t GetSSRC(void);

/**
 *
 * Method Name:  SetSSRC
 *
 *
 * Inputs:      ssrc_t   ulSSRC   - Source ID
 *
 * Outputs:     None
 *
 * Returns:     void
 *
 * Description: Stores the Source Identifier associated with an RTP connection.
 *
 * Usage Notes:
 *
 *
 *
 */
    virtual void SetSSRC(ssrc_t ulSSRC);


/**
 *
 * Method Name:  SetName
 *
 *
 * Inputs:   unsigned char *puchName - NAME Character String
 *           unsigned long  ulLength - Optional Length of NAME argument passed
 *
 * Outputs:  None
 *
 * Returns:  bool
 *
 * Description: Stores the Name field and length, either specified of derived,
 *              as attributed within the object.
 *
 * Usage Notes: The NAME argument MUST be passed as a NULL terminated string or
 *              must contain a valid length argument. All text strings passed
 *              shall be truncated beyond the length of 255 characters.
 *
 *
 *
 */
    bool SetName(unsigned char *puchCName, unsigned long ulLength=0);


/**
 *
 * Method Name:  GetName
 *
 *
 * Inputs:      None
 *
 * Outputs:     unsigned char *puchName
 *                      - buffer in which the NAME attribute shall be returned
 *
 * Returns:     unsigned long
 *                      - Length of the item being returned in the buffer
 *
 * Description: Retrieves the Name attribute stored within the object and
 *              returns its associated length.
 *
 * Usage Notes: All character strings returned are limited to 255 bytes in
 *              length.  Any wide character support for internationalized
 *              display is a responsibility assumed by the caller.
 *
 *
 */
    unsigned long GetName(unsigned char *puchName);


/**
 *
 * Method Name:  SetEmail
 *
 *
 * Inputs:      unsigned char *puchEmail  - EMAIL character string
 *              unsigned long  ulLength   - Length of Email argument passed
 *
 * Outputs:     None
 *
 * Returns:     bool
 *
 * Description: Stores the Email field and length, either specified of derived,
 *              as attributed within the object.
 *
 * Usage Notes: The EMAIL argument MUST be passed as a NULL terminated string
 *              or must contain a valid length argument. All text strings
 *              passed shall be truncated beyond the length of 255 characters.
 *
 *
 */
    bool SetEmail(unsigned char *puchEmail, unsigned long ulLength=0);


/**
 *
 * Method Name:  GetEmail
 *
 *
 * Inputs:      None
 *
 * Outputs:     unsigned char *puchEmail
 *                     - buffer in which the EMAIL attribute shall be returned
 *
 * Returns:     unsigned long - Length of the item returned in the buffer
 *
 * Description: Retrieves the Email attribute stored within the object and
 *              returns its associated length.
 *
 * Usage Notes: All character strings returned are limited to 255 bytes in
 *              length.  Any wide character support for internationalized
 *              display is a responsibility assumed by the caller.
 *
 *
 */
    unsigned long GetEmail(unsigned char *puchEmail);


/**
 *
 * Method Name:  SetPhone
 *
 *
 * Inputs:      unsigned char  *puchPhone   - PHONE character string
 *              unsigned long   ulLength    - Length of Phone argument passed
 *
 * Outputs:     None
 *
 * Returns:     bool
 *
 * Description: Stores the Phone field and length, either specified of derived,
 *              as attributed within the object.
 *
 * Usage Notes: The PHONE argument MUST be passed as a NULL terminated string
 *              or must contain a valid length argument.  All text strings
 *              passed shall be truncated beyond the length of 255 characters.
 *
 *
 */
    bool SetPhone(unsigned char *puchPhone, unsigned long ulLength=0);


/**
 *
 * Method Name:  GetPhone
 *
 *
 * Inputs:      None
 *
 * Outputs:     unsigned char *puchPhone
 *                     - buffer in which the PHONE attribute shall be returned
 *
 * Returns:     unsigned long - Length of the item returned in the buffer
 *
 * Description: Retrieves the Phone attribute stored within the object and
 *              returns its associated length.
 *
 * Usage Notes: All character strings returned are limited to 255 bytes in
 *              length.  Any wide character support for internationalized
 *              display is a responsibility assumed by the caller.
 *
 *
 */
    unsigned long GetPhone(unsigned char *puchPhone);


/**
 *
 * Method Name:  SetAppName
 *
 *
 * Inputs:   unsigned char  *puchAppName - Application Name character string
 *           unsigned long   ulLength    - Length of APP NAME argument passed
 *
 * Outputs:  None
 *
 * Returns:  bool
 *
 * Description: Stores the App Name field and length, either specified of
 *              derived, as attributed within the object.
 *
 * Usage Notes: The APP NAME argument MUST be passed as a NULL terminated
 *              string or must contain a valid length argument.  All text
 *              strings passed shall be truncated beyond the length of 255
 *              characters.
 *
 *
 */
    bool SetAppName(unsigned char *puchAppName, unsigned long ulLength=0);


/**
 *
 * Method Name:  GetAppName
 *
 *
 * Inputs:      None
 *
 * Outputs:     unsigned char *puchAppName
 *          - buffer in which the APPLICATION NAME attribute shall be returned
 *
 * Returns:     unsigned long - Length of the item returned in the buffer
 *
 * Description: Retrieves the Application Name attribute stored within the
 *              object and returns its associated length.
 *
 * Usage Notes: All character strings returned are limited to 255 bytes in
 *              length.  Any wide character support for internationalized
 *              display is a responsibility assumed by the caller.
 *
 *
 */
    unsigned long GetAppName(unsigned char *puchAppName);



/**
 *
 * Method Name:  SetLocation
 *
 *
 * Inputs:   unsigned char  *puchLocation - LOCATION character string
 *           unsigned long   ulLength     - Length of LOCATION argument passed
 *
 * Outputs:  None
 *
 * Returns:  bool
 *
 * Description: Stores the Location field and length, either specified of
 *              derived, as attributed within the object.
 *
 * Usage Notes: The LOCATION argument MUST be passed as a NULL terminated
 *              string or must contain a valid length argument. All text
 *              strings passed shall be truncated beyond the length of 255
 *              characters.
 *
 *
 */
    bool SetLocation(unsigned char *puchLocation, unsigned long ulLength=0);


/**
 *
 * Method Name:  GetLocation
 *
 *
 * Inputs:      None
 *
 * Outputs:     unsigned char *puchLocation
 *                  - buffer in which the LOCATION attribute shall be returned
 *
 * Returns:     unsigned long - Length of the item returned in the buffer
 *
 * Description: Retrieves the Location attribute stored within the object and
 *              returns its associated length.
 *
 * Usage Notes: All character strings returned are limited to 255 bytes in
 *              length.  Any wide character support for internationalized
 *              display is a responsibility assumed by the caller.
 *
 *
 */
    unsigned long GetLocation(unsigned char *puchLocation);


/**
 *
 * Method Name:  SetNotes
 *
 *
 * Inputs:      unsigned char  *puchNotes  - NOTES character string
 *              unsigned long   ulLength   - Length of NOTES argument passed
 *
 * Outputs:     None
 *
 * Returns:     bool
 *
 * Description: Stores the Notes field and length, either specified of derived,
 *              as attributed within the object.
 *
 * Usage Notes: The NOTES argument MUST be passed as a NULL terminated string
 *              or must contain a valid length argument.  All text strings
 *              passed shall be truncated beyond the length of 255 characters.
 *
 *
 */
    bool SetNotes(unsigned char *puchNotes, unsigned long ulLength=0);


/**
 *
 * Method Name:  GetNotes
 *
 *
 * Inputs:      None
 *
 * Outputs:     unsigned char *puchNotes
 *                     - buffer in which the NOTES attribute shall be returned
 *
 * Returns:     unsigned long - Length of the item returned in the buffer
 *
 * Description: Retrieves the Notes attribute stored within the object and
 *              returns its associated length.
 *
 * Usage Notes: All character strings returned are limited to 255 bytes in
 *              length.  Any wide character support for internationalized
 *              display is a responsibility assumed by the caller.
 *
 *
 */
    unsigned long GetNotes(unsigned char *puchNotes);

/**
 *
 * Method Name:  SetPrivate
 *
 *
 * Inputs:      unsigned char *puchNotes  - PRIVATE character string
 *              unsigned long  ulLength   - Length of PRIVATE argument passed
 *
 * Outputs:     None
 *
 * Returns:     bool
 *
 * Description: Stores the Private field and length, either specified of
 *              derived, as attributed within the object.
 *
 * Usage Notes: The PRIVATE argument MUST be passed as a NULL terminated string
 *              or must contain a valid length argument.  All text strings
 *              passed shall be truncated beyond the length of 255 characters.
 *
 *
 */
    bool SetPrivate(unsigned char *puchPrivate, unsigned long ulLength=0);


/**
 *
 * Method Name:  GetPrivate
 *
 *
 * Inputs:      None
 *
 * Outputs:     unsigned char *puchPrivate
 *                   - buffer in which the PRIVATE attribute shall be returned
 *
 * Returns:     unsigned long - Length of the item returned in the buffer
 *
 * Description: Retrieves the PRIVATE attribute stored within the object and
 *              returns its associated length.
 *
 * Usage Notes: All character strings returned are limited to 255 bytes in
 *              length.  Any wide character support for internationalized
 *              display is a responsibility assumed by the caller.
 *
 *
 */
    unsigned long GetPrivate(unsigned char *puchNotes);

/**
 *
 * Method Name:  GetSDESInterface()
 *
 *
 * Inputs:      None
 *
 * Outputs:     None
 *
 * Returns:     ISDESReport *  - Pointer to the SDES Report Interface
 *
 * Description: Returns the SDES Report interface.
 *
 * Usage Notes:
 *
 */
    ISDESReport * GetSDESInterface(void);

/**
 *
 * Method Name:  GetAccessInterface()
 *
 *
 * Inputs:      None
 *
 * Outputs:     None
 *
 * Returns:     IGetSrcDescription *
 *                              - Pointer to the Get Src Description Interface
 *
 * Description: Returns a pointer to the IGetSrcDescription interface used to
 *              view the contents of an SDES Report.
 *
 * Usage Notes:
 *
 */
    IGetSrcDescription *GetAccessInterface(void);

/**
 *
 * Method Name:  GetChanges
 *
 *
 * Inputs:      None
 *
 * Outputs:     None
 *
 * Returns:     unsigned long - The aggregate changes that have occurred in
 *                              the report since the last period
 *
 * Description: Retrieves the aggregate changes that have occurred in the
 *              report since the last period
 *
 * Usage Notes: Mask is an OR'ing of all changes for a period.
 *
 *
 */
    unsigned long GetChanges(void);


/**
 *
 * Method Name:  FormatSDESReport
 *
 *
 * Inputs:   boolean        bHeader
 *                             - TRUE indicates a header should be included
 *           long           lContentMask     - Content Mask
 *           unsigned long  ulBufferSize     - length of the buffer
 *
 * Outputs:  unsigned char *puchReportBuffer
 *                      - Buffer to receive the contents of the SDES Report
 *
 * Returns:  unsigned long  - number of octets written into the buffer.
 *
 * Description: Constructs an SDES report using the buffer passed in by the
 *              caller.  The Source Description object shall use the period
 *              count passed to determine which information should be used
 *              to populate an SDES report.
 *
 * Usage Notes: The header of the RTCP Report shall be formatted by delegating
 *              to the base class.
 *
 *
 */
unsigned long FormatSDESReport(bool bHeader,
                               long lContentMask,
                               unsigned char *puchReportBuffer,
                               unsigned long ulBufferSize);


/**
 *
 * Method Name:  ParseSDESReport
 *
 *
 * Inputs:   bool bHeader - TRUE indicates an RTCP Header preceeds the report
 *           unsigned char *puchReportBuffer
 *                                        - Buffer containing the SDES Report
 *
 * Outputs:  None
 *
 * Returns:  unsigned long - Number of octets processed
 *
 * Description: Extracts the contents of an SDES report using the buffer passed
 *              in by the caller.  The Source Description object shall store
 *              the content and length of data fields extracted from the SDES
 *              Report.
 *
 * Usage Notes: The header of the RTCP Report shall be parsed by delegating to
 *              the base class.
 *
 *
 */
    unsigned long ParseSDESReport(bool bHeader,
                                  unsigned char *puchReportBuffer);



   private:     // Private Methods

/**
 *
 * Method Name:  FormulateCName
 *
 *
 * Inputs:      None
 *
 * Outputs:     None
 *
 * Returns:     bool  - TRUE indicates successful formulation of the CNAME.
 *                      (actually, always returns TRUE!)
 *
 * Description: Formulates the CNAME attribute by concatenating the NAME field
 *              with the IP address of the Pingtel Network Phone.  The
 *              resultant string shall take the following form
 *              'name\@128.224.120.2' or 'name\@host.pingtel.com'.
 *
 * Usage Notes: This method shall be called once at object initialization.
 *              The CNAME attribute formed will be used in all successive
 *              calls and may only be changed when a system reset occurs.
 *
 *
 */
    bool FormulateCName(void);


/**
 *
 * Method Name:  SetCName
 *
 *
 * Inputs:      unsigned char  *puchCName  - CNAME Character String
 *              unsigned long   ulLength   - Length of CNAME argument passed
 *
 * Outputs:     None
 *
 * Returns:     bool
 *
 * Description: Stores the CName field and length, either specified of derived,
 *              as attributed within the object.
 *
 * Usage Notes: The CNAME argument MUST be passed as a NULL terminated string
 *              or must contain a valid length argument. All text strings
 *              passed shall be truncated beyond the length of 255 characters.
 *
 *
 *
 */
    bool SetCName(unsigned char *puchCName, unsigned long ulLength=0);


/**
 *
 * Method Name:  GetCName
 *
 *
 * Inputs:      None
 *
 * Outputs:     unsigned char *puchCName
 *                     - buffer in which the CNAME attribute shall be returned
 *
 * Returns:     unsigned long - Length of the item returned in the buffer
 *
 * Description: Retrieves the CName attribute stored within the object and
 *              returns its associated length.
 *
 * Usage Notes: All character strings returned are limited to 255 bytes in
 *              length.  Any wide character support for internationalized
 *              display is a responsibility assumed by the caller.
 *
 *
 */
    unsigned long GetCName(unsigned char *puchCName);

/**
 *
 * Method Name:  ExtractFieldInfo
 *
 *
 * Inputs:      unsigned char *puchReportBuffer
 *                         - Buffer containing the contents of the SDES Report
 *
 * Outputs:     None
 *
 * Returns:     unsigned long - Number of octets processed
 *
 * Description: Extracts the field information contents of an SDES report using
 *              the buffer passed in by the caller.  Each field entry shall
 *              contain an octet field type, an octet field length, and
 *              'length' octets of character data not to exceed 255.
 *
 * Usage Notes:
 *
 *
 */
    unsigned long ExtractFieldInfo(unsigned char *puchReportBuffer);


/**
 *
 * Method Name:  ExtractPadding
 *
 *
 * Inputs:      unsigned char *puchReportBuffer
 *                         - Buffer containing the contents of the SDES Report
 *
 * Outputs:     None
 *
 * Returns:     unsigned long - Number of octet processed
 *
 * Description: Extracts the padding that might be present at the end of a list
 *              of field data contained within an SDES report.
 *
 * Usage Notes:
 *
 *
 */
    unsigned long ExtractPadding(unsigned char *puchReportBuffer);

/**
 *
 * Method Name: LoadFieldInfo
 *
 *
 * Inputs:      unsigned char *puchReportBuffer -
 *                             Buffer containing the contents of SDES Report
 *              long lContentMask -
 *                Content mask used to determine what to include in a report
 *
 * Outputs:     None
 *
 * Returns:     unsigned long - Number of octets processed
 *
 * Description: Loads the field information contents of an SDES report into the
 *              buffer passed by the caller.  Each field entry shall contain an
 *              octet field type, an octet field length, and 'length' octets of
 *              character data not to exceed 255.  The CNAME field will always
 *              be passed as part of the report along with another field
 *              element determined from the period count.
 *
 * Usage Notes:
 *
 *
 */
    unsigned long LoadFieldInfo(unsigned char *puchReportBuffer,
                                long lContentMask);

/**
 *
 * Method Name: LoadFieldChanges
 *
 *
 * Inputs:   unsigned char *puchReportBuffer
 *                                         - Buffer containing the SDES Report
 *
 * Outputs:  None
 *
 * Returns:  unsigned long - Number of octets processed
 *
 * Description: Loads the field information contents of an SDES report into the
 *              buffer passed by the caller.  Each field entry shall contain an
 *              octet field type, an octet field length, and 'length' octets of
 *              character data not to exceed 255.  The field contents will be
 *              determined by the change mask set at the last SDES report
 *              reception.
 *
 * Usage Notes:
 *
 *
 */
    unsigned long LoadFieldChanges(unsigned char *puchReportBuffer);


/**
 *
 * Method Name:  TerminateNPad
 *
 *
 * Inputs:   unsigned char *puchReportBuffer
 *                            - Buffer containing the SDES Report
 *
 * Outputs:  bool *pbPadded   - Flag specifying whether padding was added
 *
 * Returns:  unsigned long    - Number of octets processed
 *
 * Description: Add a terminating NULL octet and pad out to a 4 byte boundary.
 *
 * Usage Notes:
 *
 *
 */
    unsigned long TerminateNPad(unsigned char *puchReportBuffer,
                                bool *pbPadded);

/**
 *
 * Macro Name:  DECLARE_IBASE_M
 *
 *
 * Inputs:      None
 *
 * Outputs:     None
 *
 * Returns:     None
 *
 * Description: This implements the IBaseClass functions used and exposed by
 *              derived classes.
 *
 * Usage Notes:
 *
 *
 */
DECLARE_IBASE_M


private:        // Private Data Members

/**
 *
 * Attribute Name:  m_spoLocalSDES
 *
 * Type:            static CSourceDescription *
 *
 * Description:  This static member points to the RTC Manager Singleton object.
 *
 */
      static CSourceDescription *m_spoLocalSDES;

/**
 *
 * Attribute Name:  m_bCNameSet
 *
 * Type:            bool
 *
 * Description:  This member indicates whether the CNAME has been calculated
 *               since the instantiation of this object.
 *
 */
      bool          m_bCNameSet;

/**
 *
 * Attribute Name:  m_ulContentMask
 *
 * Type:            unsigned long
 *
 * Description:  This member holds a mask of the contents of a Source
 *               Description report.
 *
 */
      unsigned long m_ulContentMask;


/**
 *
 * Attribute Name:  m_ulChangeMask
 *
 * Type:            unsigned long
 *
 * Description:     This member shall store the changes the occur between
 *                  Source Description report repections.
 *   WHAT?????
 *
 */
      unsigned long m_ulChangeMask;

/**
 *
 * Attribute Name:  m_ulCNameLength
 *
 * Type:            unsigned long
 *
 * Description:  This member holds the length of the CNAME Attribute.
 *
 */
      unsigned long m_ulCNameLength;


/**
 *
 * Attribute Name:  m_uchCName
 *
 * Type:            Character Array
 *
 * Description:  This member holds the CNAME field of a Source Description.
 *
 */
      unsigned char m_uchCName[MAX_SOURCE_LENGTH];

/**
 *
 * Attribute Name:  m_ulNameLength
 *
 * Type:            unsigned long
 *
 * Description:  This member holds the length of the NAME Attribute.
 *
 */
      unsigned long m_ulNameLength;

/**
 *
 * Attribute Name:  m_uchName
 *
 * Type:            Character Array
 *
 * Description:  This member holds the NAME field of a Source Description.
 *
 */
      unsigned char m_uchName[MAX_SOURCE_LENGTH];


/**
 *
 * Attribute Name:  m_ulEmailLength
 *
 * Type:            unsigned long
 *
 * Description:  This member holds the length of the EMAIL Attribute.
 *
 */
      unsigned long  m_ulEmailLength;

/**
 *
 * Attribute Name:  m_uchEmail
 *
 * Type:            Character Array
 *
 * Description:  This member holds the EMAIL field of a Source Description.
 *
 */
      unsigned char m_uchEmail[MAX_SOURCE_LENGTH];


/**
 *
 * Attribute Name:  m_ulPhoneLength
 *
 * Type:            unsigned long
 *
 * Description:  This member holds the length of the PHONE Attribute.
 *
 */
      unsigned long  m_ulPhoneLength;

/**
 *
 * Attribute Name:  m_uchPhone
 *
 * Type:            Character Array
 *
 * Description:  This member holds the PHONE field of a Source Description.
 *
 */
      unsigned char m_uchPhone[MAX_SOURCE_LENGTH];

/**
 *
 * Attribute Name:  m_ulAppNameLength
 *
 * Type:            unsigned long
 *
 * Description:  This member holds the length of the APP NAME Attribute.
 *
 */
      unsigned long  m_ulAppNameLength;

/**
 *
 * Attribute Name:  m_uchAppName
 *
 * Type:            Character Array
 *
 * Description:  This member holds the APP NAME field of a Source Description.
 *
 */
      unsigned char m_uchAppName[MAX_SOURCE_LENGTH];

/**
 *
 * Attribute Name:  m_ulLocationLength
 *
 * Type:            unsigned long
 *
 * Description:  This member holds the length of the LOCATION Attribute.
 *
 */
      unsigned long  m_ulLocationLength;

/**
 *
 * Attribute Name:  m_uchLocation
 *
 * Type:            Character Array
 *
 * Description:  This member holds the LOCATION field of a Source Description.
 *
 */
      unsigned char m_uchLocation[MAX_SOURCE_LENGTH];

/**
 *
 * Attribute Name:  m_ulNotesLength
 *
 * Type:            unsigned long
 *
 * Description:  This member holds the length of the NOTES Attribute.
 *
 */
      unsigned long  m_ulNotesLength;

/**
 *
 * Attribute Name:  m_uchNotes
 *
 * Type:            Character Array
 *
 * Description:  This member holds the NOTES field of a Source Description.
 *
 */
      unsigned char m_uchNotes[MAX_SOURCE_LENGTH];

/**
 *
 * Attribute Name:  m_ulPrivateLength
 *
 * Type:            unsigned long
 *
 * Description:  This member holds the length of the PRIVATE Attribute.
 *
 */
      unsigned long  m_ulPrivateLength;

/**
 *
 * Attribute Name:  m_uchPrivate
 *
 * Type:            Character Array
 *
 * Description:  This member holds the PRIVATE field of a Source Description.
 *
 */
      unsigned char m_uchPrivate[MAX_SOURCE_LENGTH];

};

/**
 *
 * Method Name:  GetChanges
 *
 *
 * Inputs:      None
 *
 * Outputs:     None
 *
 * Returns:     unsigned long - The aggregate changes that have occurred in
 *                              the report since the last period
 *
 * Description: Retrieves the aggregate changes that have occurred in the
 *              report since the last period
 *
 * Usage Notes: Mask is an OR'ing of all changes for a period.
 *
 *
 */
inline unsigned long CSourceDescription::GetChanges(void)
{

    return(m_ulChangeMask);

}

/**
 *
 * Method Name:  GetSDESInterface()
 *
 *
 * Inputs:      None
 *
 * Outputs:     None
 *
 * Returns:     ISDESReport *  - Pointer to the SDES Report Interface
 *
 * Description: Returns the SDES Report interface.
 *
 * Usage Notes:
 *
 */
inline ISDESReport * CSourceDescription::GetSDESInterface(void)
{
    ((ISDESReport *)this)->AddRef(ADD_RELEASE_CALL_ARGS(__LINE__));
    return((ISDESReport *)this);

}

/**
 *
 * Method Name:  GetAccessInterface()
 *
 *
 * Inputs:      None
 *
 * Outputs:     None
 *
 * Returns:     IGetSrcDescription *
 *                              - Pointer to the Get Src Description Interface
 *
 * Description: Returns a pointer to the IGetSrcDescription interface used to
 *              view the contents of an SDES Report.
 *
 * Usage Notes:
 *
 */
inline IGetSrcDescription *CSourceDescription::GetAccessInterface(void)
{

    ((IGetSrcDescription *)this)->AddRef(ADD_RELEASE_CALL_ARGS(__LINE__));
    return((IGetSrcDescription *)this);

}


/**
 *
 * Method Name:  GetSSRC
 *
 *
 * Inputs:       None
 *
 *
 * Outputs:      None
 *
 * Returns:     ssrc_t - The SSRC of the Bye Report
 *
 * Description: Returns the SSRC Associated with the Bye Report.
 *
 * Usage Notes:
 *
 *
 */
inline ssrc_t CSourceDescription::GetSSRC(void)
{

    return(CRTCPHeader::GetSSRC());

}

#endif