File: broadsoft-areq-00.p

package info (click to toggle)
libnet-radius-perl 2.103%2Bdfsg-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 1,276 kB
  • sloc: perl: 4,561; tcl: 33; makefile: 2
file content (1142 lines) | stat: -rw-r--r-- 99,203 bytes parent folder | download | duplicates (2)
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
#!/usr/bin/perl

no utf8;

# Net::Radius test input
# Made with $Id: broadsoft-areq-00.p 71 2007-01-14 19:00:44Z lem $

$VAR1 = {
          'packet' => 'Y}~Dެc@մ"(,#18814:0835c99c720050803123811.97012.0(2137835c99c720050803123811.9701+040000	CTI_LabNormal9933+70957852525
Originating9933Public	4444
20050803123811.970
1+040000NoVOIP4444*n-	18814:0yivan9933@cti.ruzVoice Portal{Public213.180.220.171N1000ab776-a7440003-50a88d1d-529e89fb@172.17.21.4 
engineering/
Ordinary',
          'secret' => '',
          'description' => 'BroadSoft Acct-Req (Contributed by j7)',
          'authenticator' => '~Dެc@',
          'identifier' => 89,
          'dictionary' => bless( {
                                   'packet' => undef,
                                   'vsattr' => {
                                                 '6431' => {
                                                             'BWAS-Hoteling-Group' => [
                                                                                        '129',
                                                                                        'string'
                                                                                      ],
                                                             'BWAS-Sac-Lock-Invoke-Time' => [
                                                                                              '105',
                                                                                              'string'
                                                                                            ],
                                                             'BWAS-Conference-Callid' => [
                                                                                           '49',
                                                                                           'string'
                                                                                         ],
                                                             'BWAS-Calling-Party-Category' => [
                                                                                                '47',
                                                                                                'string'
                                                                                              ],
                                                             'BWAS-Directed-Call-Pickup-Invoke-Time' => [
                                                                                                          '75',
                                                                                                          'string'
                                                                                                        ],
                                                             'BWAS-Conference-Role' => [
                                                                                         '53',
                                                                                         'string'
                                                                                       ],
                                                             'BWAS-VP-Calling-Invoke-Time' => [
                                                                                                '44',
                                                                                                'string'
                                                                                              ],
                                                             'BWAS-Acc-Per-Call-Invoke-Time' => [
                                                                                                  '63',
                                                                                                  'string'
                                                                                                ],
                                                             'BWAS-Conference-Owner-Dn' => [
                                                                                             '56',
                                                                                             'string'
                                                                                           ],
                                                             'BWAS-Spare-31' => [
                                                                                  '31',
                                                                                  'string'
                                                                                ],
                                                             'BWAS-Call-Detail-Record-Version' => [
                                                                                                    0,
                                                                                                    'string'
                                                                                                  ],
                                                             'BWAS-Type-Of-Network' => [
                                                                                         '43',
                                                                                         'string'
                                                                                       ],
                                                             'BWAS-Cfb-Deact-Fac-Result' => [
                                                                                              '88',
                                                                                              'string'
                                                                                            ],
                                                             'BWAS-Cfna-Deact-Invoke-Time' => [
                                                                                                '91',
                                                                                                'string'
                                                                                              ],
                                                             'BWAS-Authorization-Code' => [
                                                                                            '35',
                                                                                            'string'
                                                                                          ],
                                                             'BWAS-Acb-Deact-Fac-Result' => [
                                                                                              '68',
                                                                                              'string'
                                                                                            ],
                                                             'BWAS-Conference-Owner' => [
                                                                                          '55',
                                                                                          'string'
                                                                                        ],
                                                             'BWAS-Start-Time' => [
                                                                                    '10',
                                                                                    'string'
                                                                                  ],
                                                             'BWAS-Hoteling-UserId' => [
                                                                                         '130',
                                                                                         'string'
                                                                                       ],
                                                             'BWAS-Call-Park-Retr-Fac-Result' => [
                                                                                                   '72',
                                                                                                   'string'
                                                                                                 ],
                                                             'BWAS-Call-Category' => [
                                                                                       '19',
                                                                                       'string'
                                                                                     ],
                                                             'BWAS-Codec' => [
                                                                               '26',
                                                                               'string'
                                                                             ],
                                                             'BWAS-Conference-From' => [
                                                                                         '51',
                                                                                         'string'
                                                                                       ],
                                                             'BWAS-Network-Type' => [
                                                                                      '16',
                                                                                      'string'
                                                                                    ],
                                                             'BWAS-Sac-Unlock-Invoke-Time' => [
                                                                                                '107',
                                                                                                'string'
                                                                                              ],
                                                             'BWAS-Conference-Bridge' => [
                                                                                           '54',
                                                                                           'string'
                                                                                         ],
                                                             'BWAS-Last-Number-Redial-Fac-Result' => [
                                                                                                       '112',
                                                                                                       'string'
                                                                                                     ],
                                                             'BWAS-User-Timezone' => [
                                                                                       '11',
                                                                                       'string'
                                                                                     ],
                                                             'BWAS-Cfb-Deact-Invoke-Time' => [
                                                                                               '87',
                                                                                               'string'
                                                                                             ],
                                                             'BWAS-Sac-Lock-Fac-Result' => [
                                                                                             '106',
                                                                                             'string'
                                                                                           ],
                                                             'BWAS-Cfna-Act-Invoke-Time' => [
                                                                                              '89',
                                                                                              'string'
                                                                                            ],
                                                             'BWAS-Redirecting-Presentation-Indic' => [
                                                                                                        '40',
                                                                                                        'string'
                                                                                                      ],
                                                             'BWAS-Calling-Presentation-Indic' => [
                                                                                                    '8',
                                                                                                    'string'
                                                                                                  ],
                                                             'BWAS-Dpubi-Fac-Result' => [
                                                                                          '78',
                                                                                          'string'
                                                                                        ],
                                                             'BWAS-Other-Party-Name-Pres-Indic' => [
                                                                                                     '123',
                                                                                                     'string'
                                                                                                   ],
                                                             'BWAS-Cfna-Deact-Fac-Result' => [
                                                                                               '92',
                                                                                               'string'
                                                                                             ],
                                                             'BWAS-Original-Called-Presentation-Indic' => [
                                                                                                            '37',
                                                                                                            'string'
                                                                                                          ],
                                                             'BWAS-Redirecting-Number' => [
                                                                                            '39',
                                                                                            'string'
                                                                                          ],
                                                             'BWAS-Conference-Invoke-Time' => [
                                                                                                '48',
                                                                                                'string'
                                                                                              ],
                                                             'BWAS-Dnd-Deact-Invoke-Time' => [
                                                                                               '103',
                                                                                               'string'
                                                                                             ],
                                                             'BWAS-Record-id' => [
                                                                                   '1',
                                                                                   'string'
                                                                                 ],
                                                             'BWAS-Clid-Blocking-Per-Call-Fac-Result' => [
                                                                                                           '96',
                                                                                                           'string'
                                                                                                         ],
                                                             'BWAS-Conference-Id' => [
                                                                                       '52',
                                                                                       'string'
                                                                                     ],
                                                             'BWAS-Return-Call-Fac-Result' => [
                                                                                                '114',
                                                                                                'string'
                                                                                              ],
                                                             'BWAS-Call-Park-Fac-Result' => [
                                                                                              '70',
                                                                                              'string'
                                                                                            ],
                                                             'BWAS-Hoteling-Invoke-Time' => [
                                                                                              '128',
                                                                                              'string'
                                                                                            ],
                                                             'BWAS-Direct-Vm-Xfer-Invoke-Time' => [
                                                                                                    '99',
                                                                                                    'string'
                                                                                                  ],
                                                             'BWAS-Cfna-Act-Fac-Result' => [
                                                                                             '90',
                                                                                             'string'
                                                                                           ],
                                                             'BWAS-Hoteling-Group-Number' => [
                                                                                               '132',
                                                                                               'string'
                                                                                             ],
                                                             'BWAS-Termination-Cause' => [
                                                                                           '15',
                                                                                           'string'
                                                                                         ],
                                                             'BWAS-Directed-Call-Pickup-Fac-Result' => [
                                                                                                         '76',
                                                                                                         'string'
                                                                                                       ],
                                                             'BWAS-Group-Number' => [
                                                                                      '5',
                                                                                      'string'
                                                                                    ],
                                                             'BWAS-Group' => [
                                                                               '32',
                                                                               'string'
                                                                             ],
                                                             'BWAS-Original-Called-Reason' => [
                                                                                                '38',
                                                                                                'string'
                                                                                              ],
                                                             'BWAS-Clear-Mwi-Invoke-Time' => [
                                                                                               '119',
                                                                                               'string'
                                                                                             ],
                                                             'BWAS-Call-Pickup-Invoke-Time' => [
                                                                                                 '73',
                                                                                                 'string'
                                                                                               ],
                                                             'BWAS-Original-Called-Number' => [
                                                                                                '36',
                                                                                                'string'
                                                                                              ],
                                                             'BWAS-Dpubi-Invoke-Time' => [
                                                                                           '77',
                                                                                           'string'
                                                                                         ],
                                                             'BWAS-Network-Callid' => [
                                                                                        '25',
                                                                                        'string'
                                                                                      ],
                                                             'BWAS-Called-Number' => [
                                                                                       '9',
                                                                                       'string'
                                                                                     ],
                                                             'BWAS-Clid-Delivery-Per-Call-Invoke-Time' => [
                                                                                                            '93',
                                                                                                            'string'
                                                                                                          ],
                                                             'BWAS-Moh-Deact-Fac-Result' => [
                                                                                              '125',
                                                                                              'string'
                                                                                            ],
                                                             'BWAS-Answer-Indic' => [
                                                                                      '12',
                                                                                      'string'
                                                                                    ],
                                                             'BWAS-Cfa-Deact-Fac-Result' => [
                                                                                              '84',
                                                                                              'string'
                                                                                            ],
                                                             'BWAS-Call-Park-Retr-Invoke-Time' => [
                                                                                                    '71',
                                                                                                    'string'
                                                                                                  ],
                                                             'BWAS-Clid-Delivery-Per-Call-Fac-Result' => [
                                                                                                           '94',
                                                                                                           'string'
                                                                                                         ],
                                                             'BWAS-Acb-Act-Fac-Result' => [
                                                                                            '66',
                                                                                            'string'
                                                                                          ],
                                                             'BWAS-Releasing-Party' => [
                                                                                         '23',
                                                                                         'string'
                                                                                       ],
                                                             'BWAS-Charging-Vection-Orig' => [
                                                                                               '61',
                                                                                               'string'
                                                                                             ],
                                                             'BWAS-Dnd-Act-Invoke-Time' => [
                                                                                             '101',
                                                                                             'string'
                                                                                           ],
                                                             'BWAS-Access-Callid' => [
                                                                                       '28',
                                                                                       'string'
                                                                                     ],
                                                             'BWAS-Cot-Fac-Result' => [
                                                                                        '98',
                                                                                        'string'
                                                                                      ],
                                                             'BWAS-Sd8-Programming-Invoke-Time' => [
                                                                                                     '117',
                                                                                                     'string'
                                                                                                   ],
                                                             'BWAS-Release-Time' => [
                                                                                      '14',
                                                                                      'string'
                                                                                    ],
                                                             'BWAS-Carrier-Identification-Code' => [
                                                                                                     '17',
                                                                                                     'string'
                                                                                                   ],
                                                             'BWAS-Route' => [
                                                                               '24',
                                                                               'string'
                                                                             ],
                                                             'BWAS-Cancel-Cwt-Per-Call-Invoke-Time' => [
                                                                                                         '79',
                                                                                                         'string'
                                                                                                       ],
                                                             'BWAS-Network-Translated-Number' => [
                                                                                                   '21',
                                                                                                   'string'
                                                                                                 ],
                                                             'BWAS-User-Number' => [
                                                                                     '4',
                                                                                     'string'
                                                                                   ],
                                                             'BWAS-Acc-Per-Call-Fac-Result' => [
                                                                                                 '64',
                                                                                                 'string'
                                                                                               ],
                                                             'BWAS-Type' => [
                                                                              '3',
                                                                              'string'
                                                                            ],
                                                             'BWAS-Department' => [
                                                                                    '33',
                                                                                    'string'
                                                                                  ],
                                                             'BWAS-Account-Code' => [
                                                                                      '34',
                                                                                      'string'
                                                                                    ],
                                                             'BWAS-Service-provider' => [
                                                                                          '2',
                                                                                          'string'
                                                                                        ],
                                                             'BWAS-Cfa-Act-Fac-Result' => [
                                                                                            '82',
                                                                                            'string'
                                                                                          ],
                                                             'BWAS-Cfa-Deact-Invoke-Time' => [
                                                                                               '83',
                                                                                               'string'
                                                                                             ],
                                                             'BWAS-Direct-Vm-Xfer-Fac-Result' => [
                                                                                                   '100',
                                                                                                   'string'
                                                                                                 ],
                                                             'BWAS-Network-Call-Type' => [
                                                                                           '20',
                                                                                           'string'
                                                                                         ],
                                                             'BWAS-Call-Pickup-Fac-Result' => [
                                                                                                '74',
                                                                                                'string'
                                                                                              ],
                                                             'BWAS-Charging-Vection-Creator' => [
                                                                                                  '60',
                                                                                                  'string'
                                                                                                ],
                                                             'BWAS-Other-Party-Name' => [
                                                                                          '122',
                                                                                          'string'
                                                                                        ],
                                                             'BWAS-Conference-To' => [
                                                                                       '50',
                                                                                       'string'
                                                                                     ],
                                                             'BWAS-Dnd-Act-Fac-Result' => [
                                                                                            '102',
                                                                                            'string'
                                                                                          ],
                                                             'BWAS-Conference-Project-Code' => [
                                                                                                 '58',
                                                                                                 'string'
                                                                                               ],
                                                             'BWAS-Clid-Blocking-Per-Call-Invoke-Time' => [
                                                                                                            '95',
                                                                                                            'string'
                                                                                                          ],
                                                             'BWAS-Push-to-Talk-Invoke-Time' => [
                                                                                                  '126',
                                                                                                  'string'
                                                                                                ],
                                                             'BWAS-Spare-29' => [
                                                                                  '29',
                                                                                  'string'
                                                                                ],
                                                             'BWAS-Acb-Act-Invoke-Time' => [
                                                                                             '65',
                                                                                             'string'
                                                                                           ],
                                                             'BWAS-Cfa-Act-Invoke-Time' => [
                                                                                             '81',
                                                                                             'string'
                                                                                           ],
                                                             'BWAS-Local-Callid' => [
                                                                                      '45',
                                                                                      'string'
                                                                                    ],
                                                             'BWAS-Sac-Unlock-Fac-Result' => [
                                                                                               '108',
                                                                                               'string'
                                                                                             ],
                                                             'BWAS-Redirecting-Reason' => [
                                                                                            '41',
                                                                                            'string'
                                                                                          ],
                                                             'BWAS-Call-Park-Invoke-Time' => [
                                                                                               '69',
                                                                                               'string'
                                                                                             ],
                                                             'BWAS-Clear-Mwi-Fac-Result' => [
                                                                                              '120',
                                                                                              'string'
                                                                                            ],
                                                             'BWAS-Dnd-Deact-Fac-Result' => [
                                                                                              '104',
                                                                                              'string'
                                                                                            ],
                                                             'BWAS-Flash-Call-Hold-Invoke-Time' => [
                                                                                                     '109',
                                                                                                     'string'
                                                                                                   ],
                                                             'BWAS-Calling-Number' => [
                                                                                        '7',
                                                                                        'string'
                                                                                      ],
                                                             'BWAS-Dialed-Digits' => [
                                                                                       '18',
                                                                                       'string'
                                                                                     ],
                                                             'BWAS-Acb-Deact-Invoke-Time' => [
                                                                                               '67',
                                                                                               'string'
                                                                                             ],
                                                             'BWAS-Remote-Callid' => [
                                                                                       '46',
                                                                                       'string'
                                                                                     ],
                                                             'BWAS-Charging-Vector-Key' => [
                                                                                             '59',
                                                                                             'string'
                                                                                           ],
                                                             'BWAS-Network-Translated-Group' => [
                                                                                                  '22',
                                                                                                  'string'
                                                                                                ],
                                                             'BWAS-Cfb-Act-Invoke-Time' => [
                                                                                             '85',
                                                                                             'string'
                                                                                           ],
                                                             'BWAS-Cfb-Act-Fac-Result' => [
                                                                                            '86',
                                                                                            'string'
                                                                                          ],
                                                             'BWAS-Sd100-Programming-Invoke-Time' => [
                                                                                                       '115',
                                                                                                       'string'
                                                                                                     ],
                                                             'BWAS-Cot-Invoke-Time' => [
                                                                                         '97',
                                                                                         'string'
                                                                                       ],
                                                             'BWAS-Flash-Call-Hold-Fac-Result' => [
                                                                                                    '110',
                                                                                                    'string'
                                                                                                  ],
                                                             'BWAS-Return-Call-Invoke-Time' => [
                                                                                                 '113',
                                                                                                 'string'
                                                                                               ],
                                                             'BWAS-UserId' => [
                                                                                '121',
                                                                                'string'
                                                                              ],
                                                             'BWAS-Cancel-Cwt-Per-Call-Fac-Result' => [
                                                                                                        '80',
                                                                                                        'string'
                                                                                                      ],
                                                             'BWAS-Sd8-Programming-Fac-Result' => [
                                                                                                    '118',
                                                                                                    'string'
                                                                                                  ],
                                                             'BWAS-Charge-Indic' => [
                                                                                      '42',
                                                                                      'string'
                                                                                    ],
                                                             'BWAS-Failover-Correlation-Id' => [
                                                                                                 '30',
                                                                                                 'string'
                                                                                               ],
                                                             'BWAS-Answer-Time' => [
                                                                                     '13',
                                                                                     'string'
                                                                                   ],
                                                             'BWAS-Hoteling-User-Number' => [
                                                                                              '131',
                                                                                              'string'
                                                                                            ],
                                                             'BWAS-Access-Device-Address' => [
                                                                                               '27',
                                                                                               'string'
                                                                                             ],
                                                             'BWAS-Push-to-Talk-Fac-Result' => [
                                                                                                 '127',
                                                                                                 'string'
                                                                                               ],
                                                             'BWAS-Conference-Title' => [
                                                                                          '57',
                                                                                          'string'
                                                                                        ],
                                                             'BWAS-Direction' => [
                                                                                   '6',
                                                                                   'string'
                                                                                 ],
                                                             'BWAS-Sd100-Programming-Fac-Result' => [
                                                                                                      '116',
                                                                                                      'string'
                                                                                                    ],
                                                             'BWAS-Charging-Vection-Term' => [
                                                                                               '62',
                                                                                               'string'
                                                                                             ],
                                                             'BWAS-Last-Number-Redial-Invoke-Time' => [
                                                                                                        '111',
                                                                                                        'string'
                                                                                                      ]
                                                           }
                                               },
                                   'rattr' => {
                                                '4' => [
                                                         'NAS-IP-Address',
                                                         'ipaddr'
                                                       ],
                                                '40' => [
                                                          'Acct-Status-Type',
                                                          'integer'
                                                        ],
                                                '44' => [
                                                          'Acct-Session-Id',
                                                          'string'
                                                        ]
                                              },
                                   'vendors' => {
                                                  'BroadSoft' => '6431'
                                                },
                                   'rpacket' => undef,
                                   'val' => {
                                              '40' => {
                                                        'Start' => '1'
                                                      }
                                            },
                                   'rvsaval' => {},
                                   'attr' => {
                                               'Acct-Session-Id' => [
                                                                      '44',
                                                                      'string'
                                                                    ],
                                               'Acct-Status-Type' => [
                                                                       '40',
                                                                       'integer'
                                                                     ],
                                               'NAS-IP-Address' => [
                                                                     '4',
                                                                     'ipaddr'
                                                                   ]
                                             },
                                   'rvsattr' => {
                                                  '6431' => {
                                                              '127' => [
                                                                         'BWAS-Push-to-Talk-Fac-Result',
                                                                         'string'
                                                                       ],
                                                              '32' => [
                                                                        'BWAS-Group',
                                                                        'string'
                                                                      ],
                                                              '90' => [
                                                                        'BWAS-Cfna-Act-Fac-Result',
                                                                        'string'
                                                                      ],
                                                              '118' => [
                                                                         'BWAS-Sd8-Programming-Fac-Result',
                                                                         'string'
                                                                       ],
                                                              '71' => [
                                                                        'BWAS-Call-Park-Retr-Invoke-Time',
                                                                        'string'
                                                                      ],
                                                              '102' => [
                                                                         'BWAS-Dnd-Act-Fac-Result',
                                                                         'string'
                                                                       ],
                                                              '18' => [
                                                                        'BWAS-Dialed-Digits',
                                                                        'string'
                                                                      ],
                                                              '125' => [
                                                                         'BWAS-Moh-Deact-Fac-Result',
                                                                         'string'
                                                                       ],
                                                              '16' => [
                                                                        'BWAS-Network-Type',
                                                                        'string'
                                                                      ],
                                                              '44' => [
                                                                        'BWAS-VP-Calling-Invoke-Time',
                                                                        'string'
                                                                      ],
                                                              '55' => [
                                                                        'BWAS-Conference-Owner',
                                                                        'string'
                                                                      ],
                                                              '84' => [
                                                                        'BWAS-Cfa-Deact-Fac-Result',
                                                                        'string'
                                                                      ],
                                                              '27' => [
                                                                        'BWAS-Access-Device-Address',
                                                                        'string'
                                                                      ],
                                                              '95' => [
                                                                        'BWAS-Clid-Blocking-Per-Call-Invoke-Time',
                                                                        'string'
                                                                      ],
                                                              '57' => [
                                                                        'BWAS-Conference-Title',
                                                                        'string'
                                                                      ],
                                                              '20' => [
                                                                        'BWAS-Network-Call-Type',
                                                                        'string'
                                                                      ],
                                                              '109' => [
                                                                         'BWAS-Flash-Call-Hold-Invoke-Time',
                                                                         'string'
                                                                       ],
                                                              '89' => [
                                                                        'BWAS-Cfna-Act-Invoke-Time',
                                                                        'string'
                                                                      ],
                                                              '31' => [
                                                                        'BWAS-Spare-31',
                                                                        'string'
                                                                      ],
                                                              '35' => [
                                                                        'BWAS-Authorization-Code',
                                                                        'string'
                                                                      ],
                                                              '11' => [
                                                                        'BWAS-User-Timezone',
                                                                        'string'
                                                                      ],
                                                              '78' => [
                                                                        'BWAS-Dpubi-Fac-Result',
                                                                        'string'
                                                                      ],
                                                              '93' => [
                                                                        'BWAS-Clid-Delivery-Per-Call-Invoke-Time',
                                                                        'string'
                                                                      ],
                                                              '106' => [
                                                                         'BWAS-Sac-Lock-Fac-Result',
                                                                         'string'
                                                                       ],
                                                              '65' => [
                                                                        'BWAS-Acb-Act-Invoke-Time',
                                                                        'string'
                                                                      ],
                                                              '29' => [
                                                                        'BWAS-Spare-29',
                                                                        'string'
                                                                      ],
                                                              '114' => [
                                                                         'BWAS-Return-Call-Fac-Result',
                                                                         'string'
                                                                       ],
                                                              '58' => [
                                                                        'BWAS-Conference-Project-Code',
                                                                        'string'
                                                                      ],
                                                              '15' => [
                                                                        'BWAS-Termination-Cause',
                                                                        'string'
                                                                      ],
                                                              '81' => [
                                                                        'BWAS-Cfa-Act-Invoke-Time',
                                                                        'string'
                                                                      ],
                                                              '60' => [
                                                                        'BWAS-Charging-Vection-Creator',
                                                                        'string'
                                                                      ],
                                                              '101' => [
                                                                         'BWAS-Dnd-Act-Invoke-Time',
                                                                         'string'
                                                                       ],
                                                              '73' => [
                                                                        'BWAS-Call-Pickup-Invoke-Time',
                                                                        'string'
                                                                      ],
                                                              '86' => [
                                                                        'BWAS-Cfb-Act-Fac-Result',
                                                                        'string'
                                                                      ],
                                                              '76' => [
                                                                        'BWAS-Directed-Call-Pickup-Fac-Result',
                                                                        'string'
                                                                      ],
                                                              '62' => [
                                                                        'BWAS-Charging-Vection-Term',
                                                                        'string'
                                                                      ],
                                                              '67' => [
                                                                        'BWAS-Acb-Deact-Invoke-Time',
                                                                        'string'
                                                                      ],
                                                              '129' => [
                                                                         'BWAS-Hoteling-Group',
                                                                         'string'
                                                                       ],
                                                              '2' => [
                                                                       'BWAS-Service-provider',
                                                                       'string'
                                                                     ],
                                                              '17' => [
                                                                        'BWAS-Carrier-Identification-Code',
                                                                        'string'
                                                                      ],
                                                              '110' => [
                                                                         'BWAS-Flash-Call-Hold-Fac-Result',
                                                                         'string'
                                                                       ],
                                                              '82' => [
                                                                        'BWAS-Cfa-Act-Fac-Result',
                                                                        'string'
                                                                      ],
                                                              '14' => [
                                                                        'BWAS-Release-Time',
                                                                        'string'
                                                                      ],
                                                              '112' => [
                                                                         'BWAS-Last-Number-Redial-Fac-Result',
                                                                         'string'
                                                                       ],
                                                              '69' => [
                                                                        'BWAS-Call-Park-Invoke-Time',
                                                                        'string'
                                                                      ],
                                                              '49' => [
                                                                        'BWAS-Conference-Callid',
                                                                        'string'
                                                                      ],
                                                              '24' => [
                                                                        'BWAS-Route',
                                                                        'string'
                                                                      ],
                                                              '104' => [
                                                                         'BWAS-Dnd-Deact-Fac-Result',
                                                                         'string'
                                                                       ],
                                                              '131' => [
                                                                         'BWAS-Hoteling-User-Number',
                                                                         'string'
                                                                       ],
                                                              '121' => [
                                                                         'BWAS-UserId',
                                                                         'string'
                                                                       ],
                                                              '79' => [
                                                                        'BWAS-Cancel-Cwt-Per-Call-Invoke-Time',
                                                                        'string'
                                                                      ],
                                                              '0' => [
                                                                       'BWAS-Call-Detail-Record-Version',
                                                                       'string'
                                                                     ],
                                                              '23' => [
                                                                        'BWAS-Releasing-Party',
                                                                        'string'
                                                                      ],
                                                              '96' => [
                                                                        'BWAS-Clid-Blocking-Per-Call-Fac-Result',
                                                                        'string'
                                                                      ],
                                                              '126' => [
                                                                         'BWAS-Push-to-Talk-Invoke-Time',
                                                                         'string'
                                                                       ],
                                                              '47' => [
                                                                        'BWAS-Calling-Party-Category',
                                                                        'string'
                                                                      ],
                                                              '8' => [
                                                                       'BWAS-Calling-Presentation-Indic',
                                                                       'string'
                                                                     ],
                                                              '98' => [
                                                                        'BWAS-Cot-Fac-Result',
                                                                        'string'
                                                                      ],
                                                              '37' => [
                                                                        'BWAS-Original-Called-Presentation-Indic',
                                                                        'string'
                                                                      ],
                                                              '117' => [
                                                                         'BWAS-Sd8-Programming-Invoke-Time',
                                                                         'string'
                                                                       ],
                                                              '43' => [
                                                                        'BWAS-Type-Of-Network',
                                                                        'string'
                                                                      ],
                                                              '5' => [
                                                                       'BWAS-Group-Number',
                                                                       'string'
                                                                     ],
                                                              '33' => [
                                                                        'BWAS-Department',
                                                                        'string'
                                                                      ],
                                                              '21' => [
                                                                        'BWAS-Network-Translated-Number',
                                                                        'string'
                                                                      ],
                                                              '63' => [
                                                                        'BWAS-Acc-Per-Call-Invoke-Time',
                                                                        'string'
                                                                      ],
                                                              '7' => [
                                                                       'BWAS-Calling-Number',
                                                                       'string'
                                                                     ],
                                                              '26' => [
                                                                        'BWAS-Codec',
                                                                        'string'
                                                                      ],
                                                              '80' => [
                                                                        'BWAS-Cancel-Cwt-Per-Call-Fac-Result',
                                                                        'string'
                                                                      ],
                                                              '119' => [
                                                                         'BWAS-Clear-Mwi-Invoke-Time',
                                                                         'string'
                                                                       ],
                                                              '99' => [
                                                                        'BWAS-Direct-Vm-Xfer-Invoke-Time',
                                                                        'string'
                                                                      ],
                                                              '72' => [
                                                                        'BWAS-Call-Park-Retr-Fac-Result',
                                                                        'string'
                                                                      ],
                                                              '74' => [
                                                                        'BWAS-Call-Pickup-Fac-Result',
                                                                        'string'
                                                                      ],
                                                              '61' => [
                                                                        'BWAS-Charging-Vection-Orig',
                                                                        'string'
                                                                      ],
                                                              '108' => [
                                                                         'BWAS-Sac-Unlock-Fac-Result',
                                                                         'string'
                                                                       ],
                                                              '115' => [
                                                                         'BWAS-Sd100-Programming-Invoke-Time',
                                                                         'string'
                                                                       ],
                                                              '92' => [
                                                                        'BWAS-Cfna-Deact-Fac-Result',
                                                                        'string'
                                                                      ],
                                                              '103' => [
                                                                         'BWAS-Dnd-Deact-Invoke-Time',
                                                                         'string'
                                                                       ],
                                                              '10' => [
                                                                        'BWAS-Start-Time',
                                                                        'string'
                                                                      ],
                                                              '113' => [
                                                                         'BWAS-Return-Call-Invoke-Time',
                                                                         'string'
                                                                       ],
                                                              '91' => [
                                                                        'BWAS-Cfna-Deact-Invoke-Time',
                                                                        'string'
                                                                      ],
                                                              '48' => [
                                                                        'BWAS-Conference-Invoke-Time',
                                                                        'string'
                                                                      ],
                                                              '107' => [
                                                                         'BWAS-Sac-Unlock-Invoke-Time',
                                                                         'string'
                                                                       ],
                                                              '87' => [
                                                                        'BWAS-Cfb-Deact-Invoke-Time',
                                                                        'string'
                                                                      ],
                                                              '77' => [
                                                                        'BWAS-Dpubi-Invoke-Time',
                                                                        'string'
                                                                      ],
                                                              '123' => [
                                                                         'BWAS-Other-Party-Name-Pres-Indic',
                                                                         'string'
                                                                       ],
                                                              '50' => [
                                                                        'BWAS-Conference-To',
                                                                        'string'
                                                                      ],
                                                              '39' => [
                                                                        'BWAS-Redirecting-Number',
                                                                        'string'
                                                                      ],
                                                              '64' => [
                                                                        'BWAS-Acc-Per-Call-Fac-Result',
                                                                        'string'
                                                                      ],
                                                              '97' => [
                                                                        'BWAS-Cot-Invoke-Time',
                                                                        'string'
                                                                      ],
                                                              '12' => [
                                                                        'BWAS-Answer-Indic',
                                                                        'string'
                                                                      ],
                                                              '41' => [
                                                                        'BWAS-Redirecting-Reason',
                                                                        'string'
                                                                      ],
                                                              '52' => [
                                                                        'BWAS-Conference-Id',
                                                                        'string'
                                                                      ],
                                                              '56' => [
                                                                        'BWAS-Conference-Owner-Dn',
                                                                        'string'
                                                                      ],
                                                              '45' => [
                                                                        'BWAS-Local-Callid',
                                                                        'string'
                                                                      ],
                                                              '66' => [
                                                                        'BWAS-Acb-Act-Fac-Result',
                                                                        'string'
                                                                      ],
                                                              '19' => [
                                                                        'BWAS-Call-Category',
                                                                        'string'
                                                                      ],
                                                              '54' => [
                                                                        'BWAS-Conference-Bridge',
                                                                        'string'
                                                                      ],
                                                              '70' => [
                                                                        'BWAS-Call-Park-Fac-Result',
                                                                        'string'
                                                                      ],
                                                              '68' => [
                                                                        'BWAS-Acb-Deact-Fac-Result',
                                                                        'string'
                                                                      ],
                                                              '1' => [
                                                                       'BWAS-Record-id',
                                                                       'string'
                                                                     ],
                                                              '88' => [
                                                                        'BWAS-Cfb-Deact-Fac-Result',
                                                                        'string'
                                                                      ],
                                                              '116' => [
                                                                         'BWAS-Sd100-Programming-Fac-Result',
                                                                         'string'
                                                                       ],
                                                              '30' => [
                                                                        'BWAS-Failover-Correlation-Id',
                                                                        'string'
                                                                      ],
                                                              '100' => [
                                                                         'BWAS-Direct-Vm-Xfer-Fac-Result',
                                                                         'string'
                                                                       ],
                                                              '25' => [
                                                                        'BWAS-Network-Callid',
                                                                        'string'
                                                                      ],
                                                              '128' => [
                                                                         'BWAS-Hoteling-Invoke-Time',
                                                                         'string'
                                                                       ],
                                                              '28' => [
                                                                        'BWAS-Access-Callid',
                                                                        'string'
                                                                      ],
                                                              '120' => [
                                                                         'BWAS-Clear-Mwi-Fac-Result',
                                                                         'string'
                                                                       ],
                                                              '40' => [
                                                                        'BWAS-Redirecting-Presentation-Indic',
                                                                        'string'
                                                                      ],
                                                              '75' => [
                                                                        'BWAS-Directed-Call-Pickup-Invoke-Time',
                                                                        'string'
                                                                      ],
                                                              '83' => [
                                                                        'BWAS-Cfa-Deact-Invoke-Time',
                                                                        'string'
                                                                      ],
                                                              '59' => [
                                                                        'BWAS-Charging-Vector-Key',
                                                                        'string'
                                                                      ],
                                                              '130' => [
                                                                         'BWAS-Hoteling-UserId',
                                                                         'string'
                                                                       ],
                                                              '53' => [
                                                                        'BWAS-Conference-Role',
                                                                        'string'
                                                                      ],
                                                              '122' => [
                                                                         'BWAS-Other-Party-Name',
                                                                         'string'
                                                                       ],
                                                              '42' => [
                                                                        'BWAS-Charge-Indic',
                                                                        'string'
                                                                      ],
                                                              '22' => [
                                                                        'BWAS-Network-Translated-Group',
                                                                        'string'
                                                                      ],
                                                              '46' => [
                                                                        'BWAS-Remote-Callid',
                                                                        'string'
                                                                      ],
                                                              '13' => [
                                                                        'BWAS-Answer-Time',
                                                                        'string'
                                                                      ],
                                                              '105' => [
                                                                         'BWAS-Sac-Lock-Invoke-Time',
                                                                         'string'
                                                                       ],
                                                              '6' => [
                                                                       'BWAS-Direction',
                                                                       'string'
                                                                     ],
                                                              '85' => [
                                                                        'BWAS-Cfb-Act-Invoke-Time',
                                                                        'string'
                                                                      ],
                                                              '36' => [
                                                                        'BWAS-Original-Called-Number',
                                                                        'string'
                                                                      ],
                                                              '3' => [
                                                                       'BWAS-Type',
                                                                       'string'
                                                                     ],
                                                              '94' => [
                                                                        'BWAS-Clid-Delivery-Per-Call-Fac-Result',
                                                                        'string'
                                                                      ],
                                                              '51' => [
                                                                        'BWAS-Conference-From',
                                                                        'string'
                                                                      ],
                                                              '9' => [
                                                                       'BWAS-Called-Number',
                                                                       'string'
                                                                     ],
                                                              '111' => [
                                                                         'BWAS-Last-Number-Redial-Invoke-Time',
                                                                         'string'
                                                                       ],
                                                              '38' => [
                                                                        'BWAS-Original-Called-Reason',
                                                                        'string'
                                                                      ],
                                                              '4' => [
                                                                       'BWAS-User-Number',
                                                                       'string'
                                                                     ],
                                                              '34' => [
                                                                        'BWAS-Account-Code',
                                                                        'string'
                                                                      ],
                                                              '132' => [
                                                                         'BWAS-Hoteling-Group-Number',
                                                                         'string'
                                                                       ]
                                                            }
                                                },
                                   'rval' => {
                                               '40' => {
                                                         '1' => 'Start'
                                                       }
                                             },
                                   'vsaval' => {}
                                 }, 'Net::Radius::Dictionary' ),
          'opts' => {
                      'identifier' => 89,
                      'authenticator' => '~Dެc@',
                      'dictionary' => [
                                        './minidict'
                                      ],
                      'secret' => '',
                      'description' => 'BroadSoft Acct-Req (Contributed by j7)',
                      'slots' => 3,
                      'output' => '../packets/broadsoft-areq-00.p'
                    },
          'slots' => 3
        };