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
|
libosptk.so.4 libosptk4t64 #MINVER#
OSPM_INET_NTOA@Base 4.11.3
OSPPASN1AlgorithmIdEncode@Base 4.11.3
OSPPASN1ElementCopy@Base 4.11.3
OSPPASN1ElementCopyElementData@Base 4.11.3
OSPPASN1ElementCreate@Base 4.11.3
OSPPASN1ElementDecode@Base 4.11.3
OSPPASN1ElementDelete@Base 4.11.3
OSPPASN1ElementDeparse@Base 4.11.3
OSPPASN1ElementEncode@Base 4.11.3
OSPPASN1ElementFormat@Base 4.11.3
OSPPASN1ElementGet@Base 4.11.3
OSPPASN1ElementGetContentData@Base 4.11.3
OSPPASN1ElementGetElementData@Base 4.11.3
OSPPASN1ElementParse@Base 4.11.3
OSPPASN1ElementParseDelete@Base 4.11.3
OSPPASN1ElementTestContext@Base 4.11.3
OSPPASN1IdGetValue@Base 4.11.3
OSPPASN1IntegerGetSmallValue@Base 4.11.3
OSPPASN1NullEncode@Base 4.11.3
OSPPASN1ObjectAddChild@Base 4.11.3
OSPPASN1ObjectCopy@Base 4.11.3
OSPPASN1ObjectCopyElementObject@Base 4.11.3
OSPPASN1ObjectCreate@Base 4.11.3
OSPPASN1ObjectDelete@Base 4.11.3
OSPPASN1ObjectDeparse@Base 4.11.3
OSPPASN1ObjectEncode@Base 4.11.3
OSPPASN1ObjectFormat@Base 4.11.3
OSPPASN1ObjectGetElementByDataRef@Base 4.11.3
OSPPASN1ObjectGetElementInfo@Base 4.11.3
OSPPASN1ObjectGetParseResults@Base 4.11.3
OSPPASN1ObjectIdentifierEncode@Base 4.11.3
OSPPASN1ObjectNew@Base 4.11.3
OSPPASN1OctetStringEncode@Base 4.11.3
OSPPASN1SmallInt2UnsignedChar@Base 4.11.3
OSPPASN1SmallIntegerEncode@Base 4.11.3
OSPPAddConfIdToUsageElement@Base 4.11.3
OSPPAddPricingInfoToUsageElement@Base 4.11.3
OSPPAltInfoDelete@Base 4.11.3
OSPPAltInfoGetPart@Base 4.11.3
OSPPAltInfoGetSize@Base 4.11.3
OSPPAltInfoGetValue@Base 4.11.3
OSPPAltInfoNew@Base 4.11.3
OSPPAltInfoToElement@Base 4.11.3
OSPPAltInfoTypeGetName@Base 4.11.3
OSPPAltInfoTypeGetPart@Base 4.11.3
OSPPAuditAddMessageToBuffer@Base 4.11.3
OSPPAuditCheck@Base 4.11.3
OSPPAuditComponentIdDelete@Base 4.11.3
OSPPAuditComponentIdNew@Base 4.11.3
OSPPAuditDelete@Base 4.11.3
OSPPAuditGetAccessCondVar@Base 4.11.3
OSPPAuditGetMaxMessages@Base 4.11.3
OSPPAuditGetMaxSpace@Base 4.11.3
OSPPAuditGetMaxTime@Base 4.11.3
OSPPAuditGetStartTime@Base 4.11.3
OSPPAuditGetURL@Base 4.11.3
OSPPAuditGetWorkerCondVar@Base 4.11.3
OSPPAuditIncrementUsedSpace@Base 4.11.3
OSPPAuditInit@Base 4.11.3
OSPPAuditInitializeBuffer@Base 4.11.3
OSPPAuditNew@Base 4.11.3
OSPPAuditPrepareAndSend@Base 4.11.3
OSPPAuditProcessReturn@Base 4.11.3
OSPPAuditRemoveComponentIdFromList@Base 4.11.3
OSPPAuditResetDefaults@Base 4.11.3
OSPPAuditSetComm@Base 4.11.3
OSPPAuditSetMaxMessages@Base 4.11.3
OSPPAuditSetMaxSpace@Base 4.11.3
OSPPAuditSetMaxTime@Base 4.11.3
OSPPAuditSetNumMessages@Base 4.11.3
OSPPAuditSetSecurity@Base 4.11.3
OSPPAuditSetStartTime@Base 4.11.3
OSPPAuditSetURL@Base 4.11.3
OSPPAuditSetUsedSpace@Base 4.11.3
OSPPAuditStartWorker@Base 4.11.3
OSPPAuditVerifyUsageCnf@Base 4.11.3
OSPPAuthCnfDelete@Base 4.11.3
OSPPAuthCnfHasStatus@Base 4.11.3
OSPPAuthIndDelete@Base 4.11.3
OSPPAuthIndFirstDestinationAlt@Base 4.11.3
OSPPAuthIndFirstSourceAlt@Base 4.11.3
OSPPAuthIndGetCallId@Base 4.11.3
OSPPAuthIndGetCallIdSize@Base 4.11.3
OSPPAuthIndGetCallIdValue@Base 4.11.3
OSPPAuthIndGetDestNumber@Base 4.11.3
OSPPAuthIndGetDestinationAltValue@Base 4.11.3
OSPPAuthIndGetRole@Base 4.11.3
OSPPAuthIndGetSourceAltValue@Base 4.11.3
OSPPAuthIndGetSourceNumber@Base 4.11.3
OSPPAuthIndHasCallId@Base 4.11.3
OSPPAuthIndHasDest@Base 4.11.3
OSPPAuthIndHasDestNumber@Base 4.11.3
OSPPAuthIndHasDestinationAlt@Base 4.11.3
OSPPAuthIndHasRole@Base 4.11.3
OSPPAuthIndHasSourceAlt@Base 4.11.3
OSPPAuthIndHasSourceNumber@Base 4.11.3
OSPPAuthIndNew@Base 4.11.3
OSPPAuthIndNextDestinationAlt@Base 4.11.3
OSPPAuthIndNextSourceAlt@Base 4.11.3
OSPPAuthIndSetCallId@Base 4.11.3
OSPPAuthIndSetDest@Base 4.11.3
OSPPAuthIndSetDestNumber@Base 4.11.3
OSPPAuthIndSetRole@Base 4.11.3
OSPPAuthIndSetSourceNumber@Base 4.11.3
OSPPAuthIndSetTimeLimit@Base 4.11.3
OSPPAuthIndSetTimestamp@Base 4.11.3
OSPPAuthReqDelete@Base 4.11.3
OSPPAuthReqFirstCallId@Base 4.11.3
OSPPAuthReqFirstDestinationAlt@Base 4.11.3
OSPPAuthReqFirstSourceAlt@Base 4.11.3
OSPPAuthReqGetCustId@Base 4.11.3
OSPPAuthReqGetDestNumber@Base 4.11.3
OSPPAuthReqGetDeviceId@Base 4.11.3
OSPPAuthReqGetMaxDest@Base 4.11.3
OSPPAuthReqGetSourceNumber@Base 4.11.3
OSPPAuthReqGetTimestamp@Base 4.11.3
OSPPAuthReqHasCallId@Base 4.11.3
OSPPAuthReqHasComponentId@Base 4.11.3
OSPPAuthReqHasCustId@Base 4.11.3
OSPPAuthReqHasDestNumber@Base 4.11.3
OSPPAuthReqHasDestinationAlt@Base 4.11.3
OSPPAuthReqHasDeviceId@Base 4.11.3
OSPPAuthReqHasMessageId@Base 4.11.3
OSPPAuthReqHasSourceAlt@Base 4.11.3
OSPPAuthReqHasSourceNumber@Base 4.11.3
OSPPAuthReqHasTimestamp@Base 4.11.3
OSPPAuthReqNew@Base 4.11.3
OSPPAuthReqNextCallId@Base 4.11.3
OSPPAuthReqNextDestinationAlt@Base 4.11.3
OSPPAuthReqNextSourceAlt@Base 4.11.3
OSPPAuthReqSetCustId@Base 4.11.3
OSPPAuthReqSetDestNumber@Base 4.11.3
OSPPAuthReqSetDeviceId@Base 4.11.3
OSPPAuthReqSetMaxDest@Base 4.11.3
OSPPAuthReqSetSourceNumber@Base 4.11.3
OSPPAuthReqSetTimestamp@Base 4.11.3
OSPPAuthReqToElement@Base 4.11.3
OSPPAuthRspAddDest@Base 4.11.3
OSPPAuthRspComponentIdFromElement@Base 4.11.3
OSPPAuthRspDelete@Base 4.11.3
OSPPAuthRspFirstDest@Base 4.11.3
OSPPAuthRspFromElement@Base 4.11.3
OSPPAuthRspGetCSAudit@Base 4.11.3
OSPPAuthRspGetDelayLimit@Base 4.11.3
OSPPAuthRspGetNumDests@Base 4.11.3
OSPPAuthRspGetRole@Base 4.11.3
OSPPAuthRspGetStatus@Base 4.11.3
OSPPAuthRspGetTNAudit@Base 4.11.3
OSPPAuthRspHasCSAudit@Base 4.11.3
OSPPAuthRspHasComponentId@Base 4.11.3
OSPPAuthRspHasDelayLimit@Base 4.11.3
OSPPAuthRspHasDelayPref@Base 4.11.3
OSPPAuthRspHasDest@Base 4.11.3
OSPPAuthRspHasMessageId@Base 4.11.3
OSPPAuthRspHasNumDests@Base 4.11.3
OSPPAuthRspHasRole@Base 4.11.3
OSPPAuthRspHasStatus@Base 4.11.3
OSPPAuthRspIncNumDests@Base 4.11.3
OSPPAuthRspMessageIdFromElement@Base 4.11.3
OSPPAuthRspNew@Base 4.11.3
OSPPAuthRspNextDest@Base 4.11.3
OSPPAuthRspSetComponentId@Base 4.11.3
OSPPAuthRspSetDelayLimit@Base 4.11.3
OSPPAuthRspSetDelayPref@Base 4.11.3
OSPPAuthRspSetMessageId@Base 4.11.3
OSPPAuthRspSetRole@Base 4.11.3
OSPPAuthRspSetTimestamp@Base 4.11.3
OSPPAuthRspSetTrxId@Base 4.11.3
OSPPBase64Decode@Base 4.11.3
OSPPBase64Encode@Base 4.11.3
OSPPBfrClear@Base 4.11.3
OSPPBfrDelete@Base 4.11.3
OSPPBfrLinearPtr@Base 4.11.3
OSPPBfrNew@Base 4.11.3
OSPPBfrPeekByte@Base 4.11.3
OSPPBfrPeekByteN@Base 4.11.3
OSPPBfrReadBlock@Base 4.11.3
OSPPBfrReadByte@Base 4.11.3
OSPPBfrSize@Base 4.11.3
OSPPBfrWriteBlock@Base 4.11.3
OSPPBfrWriteByte@Base 4.11.3
OSPPCSAuditDelete@Base 4.11.3
OSPPCSAuditFromElement@Base 4.11.3
OSPPCSAuditGetTrigger@Base 4.11.3
OSPPCSAuditHasTrigger@Base 4.11.3
OSPPCSAuditNew@Base 4.11.3
OSPPCSAuditSetTrigger@Base 4.11.3
OSPPCallIdDelete@Base 4.11.3
OSPPCallIdFromASCIIElement@Base 4.11.3
OSPPCallIdFromElement@Base 4.11.3
OSPPCallIdGetSize@Base 4.11.3
OSPPCallIdGetValue@Base 4.11.3
OSPPCallIdNew@Base 4.11.3
OSPPCallIdToElement@Base 4.11.3
OSPPCallPartyNumToElement@Base 4.11.3
OSPPCapCnfDelete@Base 4.11.3
OSPPCapCnfFromElement@Base 4.11.3
OSPPCapCnfNew@Base 4.11.3
OSPPCapIndDelete@Base 4.11.3
OSPPCapIndNew@Base 4.11.3
OSPPCapIndToElement@Base 4.11.3
OSPPCleanup@Base 4.11.3
OSPPCommBuildServicePoint@Base 4.11.3
OSPPCommDecrementHttpConnCount@Base 4.11.3
OSPPCommDelete@Base 4.11.3
OSPPCommGetHttpConnCount@Base 4.11.3
OSPPCommGetMaxConnections@Base 4.11.3
OSPPCommGetNumberOfServicePoints@Base 4.11.3
OSPPCommGetNumberOfTransactions@Base 4.11.3
OSPPCommGetPersistence@Base 4.11.3
OSPPCommGetRetryDelay@Base 4.11.3
OSPPCommGetRetryLimit@Base 4.11.3
OSPPCommGetSecurity@Base 4.11.3
OSPPCommGetServicePointList@Base 4.11.3
OSPPCommGetServicePoints@Base 4.11.3
OSPPCommGetTimeout@Base 4.11.3
OSPPCommIncrementHttpConnCount@Base 4.11.3
OSPPCommNew@Base 4.11.3
OSPPCommParseSvcPt@Base 4.11.3
OSPPCommSetAuditFlag@Base 4.11.3
OSPPCommSetAuditURL@Base 4.11.3
OSPPCommSetConnSelectionTimeout@Base 4.11.3
OSPPCommSetMaxConnections@Base 4.11.3
OSPPCommSetPersistence@Base 4.11.3
OSPPCommSetRetryDelay@Base 4.11.3
OSPPCommSetRetryLimit@Base 4.11.3
OSPPCommSetSecurity@Base 4.11.3
OSPPCommSetServicePoints@Base 4.11.3
OSPPCommSetShutdown@Base 4.11.3
OSPPCommSetTimeout@Base 4.11.3
OSPPCommShutdownConnections@Base 4.11.3
OSPPCommSignalAllConnections@Base 4.11.3
OSPPCommUpdateURLs@Base 4.11.3
OSPPCommValidateSvcPts@Base 4.11.3
OSPPCryptoDecrypt@Base 4.11.3
OSPPCryptoDigest@Base 4.11.3
OSPPCryptoEncrypt@Base 4.11.3
OSPPCryptoVerify@Base 4.11.3
OSPPCryptoWrapDecrypt@Base 4.11.3
OSPPCryptoWrapDigest@Base 4.11.3
OSPPCryptoWrapEncrypt@Base 4.11.3
OSPPCryptoWrapVerify@Base 4.11.3
OSPPCustomInfoToElement@Base 4.11.3
OSPPDestAddToken@Base 4.11.3
OSPPDestAltFromElement@Base 4.13.0
OSPPDestDelete@Base 4.11.3
OSPPDestDevGetAddr@Base 4.11.3
OSPPDestDevHasAddr@Base 4.11.3
OSPPDestDevSetAddr@Base 4.11.3
OSPPDestFirstToken@Base 4.11.3
OSPPDestFromElement@Base 4.11.3
OSPPDestGetAddr@Base 4.11.3
OSPPDestGetCallId@Base 4.11.3
OSPPDestGetDestinationCount@Base 4.11.3
OSPPDestGetLimit@Base 4.11.3
OSPPDestGetNetworkAddr@Base 4.11.3
OSPPDestGetNumber@Base 4.11.3
OSPPDestGetSetupAttempt@Base 4.11.3
OSPPDestGetSrcNumber@Base 4.11.3
OSPPDestGetTCCode@Base 4.11.3
OSPPDestGetTCDesc@Base 4.11.3
OSPPDestGetTermCause@Base 4.11.3
OSPPDestGetValidAfter@Base 4.11.3
OSPPDestGetValidUntil@Base 4.11.3
OSPPDestHasAddr@Base 4.11.3
OSPPDestHasAuthority@Base 4.11.3
OSPPDestHasCallId@Base 4.11.3
OSPPDestHasLimit@Base 4.11.3
OSPPDestHasNetworkAddr@Base 4.11.3
OSPPDestHasNumber@Base 4.11.3
OSPPDestHasSrcNumber@Base 4.11.3
OSPPDestHasTermCause@Base 4.11.3
OSPPDestHasTermCauseAny@Base 4.11.3
OSPPDestHasToken@Base 4.11.3
OSPPDestHasValidAfter@Base 4.11.3
OSPPDestHasValidUntil@Base 4.11.3
OSPPDestInfoFromElement@Base 4.11.3
OSPPDestNew@Base 4.11.3
OSPPDestNextToken@Base 4.11.3
OSPPDestProtocolFromElement@Base 4.11.3
OSPPDestProtocolGetName@Base 4.11.3
OSPPDestProtocolGetPart@Base 4.11.3
OSPPDestSetAddr@Base 4.11.3
OSPPDestSetAuthority@Base 4.11.3
OSPPDestSetCallId@Base 4.11.3
OSPPDestSetDestinationCount@Base 4.11.3
OSPPDestSetLimit@Base 4.11.3
OSPPDestSetNetworkAddr@Base 4.11.3
OSPPDestSetNumber@Base 4.11.3
OSPPDestSetOSPVersion@Base 4.11.3
OSPPDestSetProtocol@Base 4.11.3
OSPPDestSetSetupAttempt@Base 4.11.3
OSPPDestSetSrcNumber@Base 4.11.3
OSPPDestSetTermCause@Base 4.11.3
OSPPDestSetValidAfter@Base 4.11.3
OSPPDestSetValidUntil@Base 4.11.3
OSPPFailReasonFind@Base 4.11.3
OSPPFingerPrintNew@Base 4.11.3
OSPPFingerPrintToElement@Base 4.11.3
OSPPGenerateUniqueId@Base 4.11.3
OSPPGetTCCode@Base 4.11.3
OSPPGetTCDesc@Base 4.11.3
OSPPHasTermCause@Base 4.11.3
OSPPHasTermCauseAny@Base 4.11.3
OSPPHttpDecrementConnectionCount@Base 4.11.3
OSPPHttpDelete@Base 4.11.3
OSPPHttpGetSecurity@Base 4.11.3
OSPPHttpNew@Base 4.11.3
OSPPHttpParseHeader@Base 4.11.3
OSPPHttpRequestHandoff@Base 4.11.3
OSPPHttpVerifyResponse@Base 4.11.3
OSPPIdentityFromElement@Base 4.11.3
OSPPIdentityToElement@Base 4.11.3
OSPPInit@Base 4.11.3
OSPPInitSSLMultiThread@Base 4.11.3
OSPPKCS8KeyInfoGetEncodedKeyInfo@Base 4.11.3
OSPPListAppend@Base 4.11.3
OSPPListCount@Base 4.11.3
OSPPListDelete@Base 4.11.3
OSPPListEmpty@Base 4.11.3
OSPPListFirst@Base 4.11.3
OSPPListLast@Base 4.11.3
OSPPListLinkNew@Base 4.11.3
OSPPListMove@Base 4.11.3
OSPPListNew@Base 4.11.3
OSPPListNext@Base 4.11.3
OSPPListNextToLast@Base 4.11.3
OSPPListRemove@Base 4.11.3
OSPPListRemoveSpecificItem@Base 4.11.3
OSPPMimeBodyFree@Base 4.11.3
OSPPMimeBodyPartsParse@Base 4.11.3
OSPPMimeBufferParse@Base 4.11.3
OSPPMimeDataFree@Base 4.11.3
OSPPMimeFieldFree@Base 4.11.3
OSPPMimeMessageBuild@Base 4.11.3
OSPPMimeMessageCreate@Base 4.11.3
OSPPMimeMessageInit@Base 4.11.3
OSPPMimeMessageParse@Base 4.11.3
OSPPMimeMessageSetContentAndLength@Base 4.11.3
OSPPMimeParamFree@Base 4.11.3
OSPPMimeParamsParse@Base 4.11.3
OSPPMimePartFree@Base 4.11.3
OSPPMimeVerifyParameters@Base 4.11.3
OSPPMsgAttrGetName@Base 4.11.3
OSPPMsgAttrGetPart@Base 4.11.3
OSPPMsgBinFromASCIIElement@Base 4.11.3
OSPPMsgBinFromElement@Base 4.11.3
OSPPMsgBinToElement@Base 4.11.3
OSPPMsgCodeFromElement@Base 4.11.3
OSPPMsgCodeToElement@Base 4.11.3
OSPPMsgDescGetName@Base 4.11.3
OSPPMsgDescGetPart@Base 4.11.3
OSPPMsgElemGetName@Base 4.11.3
OSPPMsgElemGetPart@Base 4.11.3
OSPPMsgElemIsCritical@Base 4.11.3
OSPPMsgFloatFromElement@Base 4.11.3
OSPPMsgFloatToElement@Base 4.11.3
OSPPMsgInfoAssignRequestMsg@Base 4.11.3
OSPPMsgInfoDelete@Base 4.11.3
OSPPMsgInfoNew@Base 4.11.3
OSPPMsgInfoProcessResponse@Base 4.11.3
OSPPMsgInfoWaitForMsg@Base 4.11.3
OSPPMsgNumFromElement@Base 4.11.3
OSPPMsgNumToElement@Base 4.11.3
OSPPMsgQueueAddTransaction@Base 4.11.3
OSPPMsgQueueDecrementNumberOfTransactions@Base 4.11.3
OSPPMsgQueueDelete@Base 4.11.3
OSPPMsgQueueGetNumberOfTransactions@Base 4.11.3
OSPPMsgQueueIncrementNumberOfTransactions@Base 4.11.3
OSPPMsgQueueNew@Base 4.11.3
OSPPMsgTXFromElement@Base 4.11.3
OSPPMsgTXToElement@Base 4.11.3
OSPPMsgTimeFromElement@Base 4.11.3
OSPPMsgTimeToElement@Base 4.11.3
OSPPNPCicToElement@Base 4.11.3
OSPPNPNpdiToElement@Base 4.11.3
OSPPNPRnToElement@Base 4.11.3
OSPPOSTimeCalToString@Base 4.11.3
OSPPOSTimeConvertToGMT@Base 4.11.3
OSPPOSTimeFormatGMTTime@Base 4.11.3
OSPPOSTimeGetTime@Base 4.11.3
OSPPOSTimeStringToCal@Base 4.11.3
OSPPOpenSSLCleanUp@Base 4.11.3
OSPPOpenSSLInit@Base 4.11.3
OSPPOpenSSLMultiThreadCleanUp@Base 4.11.3
OSPPOperatorNameToElement@Base 4.11.3
OSPPPKCS7CertificatesCreate@Base 4.11.3
OSPPPKCS7ContentInfoCreate@Base 4.11.3
OSPPPKCS7DigestAlgorithmsCreate@Base 4.11.3
OSPPPKCS7DigestInfoCreate@Base 4.11.3
OSPPPKCS7SignatureCreate@Base 4.11.3
OSPPPKCS7SignatureGetContent@Base 4.11.3
OSPPPKCS7SignatureParse@Base 4.11.3
OSPPPKCS7SignatureVerify@Base 4.11.3
OSPPPKCS7SignedDataCreate@Base 4.11.3
OSPPPKCS7SignerInfoCreate@Base 4.11.3
OSPPPKCS7SignerInfosCreate@Base 4.11.3
OSPPPKCS8KeyInfoCreate@Base 4.11.3
OSPPPKCS8KeyInfoDelete@Base 4.11.3
OSPPPKCS8KeyInfoGetPrivateKey@Base 4.11.3
OSPPPKCS8KeyInfoGetPrivateKeyElement@Base 4.11.3
OSPPPKCS8KeyInfoTestContext@Base 4.11.3
OSPPParseTokenInfoFromASCIIToken@Base 4.11.3
OSPPPricingInfoToElement@Base 4.11.3
OSPPProviderDelete@Base 4.11.3
OSPPProviderGetAuthorityCertificates@Base 4.11.3
OSPPProviderGetContext@Base 4.11.3
OSPPProviderGetCustId@Base 4.11.3
OSPPProviderGetDeviceId@Base 4.11.3
OSPPProviderGetHTTPMaxConnections@Base 4.11.3
OSPPProviderGetHTTPPersistence@Base 4.11.3
OSPPProviderGetHTTPRetryDelay@Base 4.11.3
OSPPProviderGetHTTPRetryLimit@Base 4.11.3
OSPPProviderGetHTTPTimeout@Base 4.11.3
OSPPProviderGetLocalKeys@Base 4.11.3
OSPPProviderGetLocalValidation@Base 4.11.3
OSPPProviderGetNewCollectionItem@Base 4.11.3
OSPPProviderGetNewTransactionAllowed@Base 4.11.3
OSPPProviderGetNumberOfAuthorityCertificates@Base 4.11.3
OSPPProviderGetNumberOfServicePoints@Base 4.11.3
OSPPProviderGetSSLLifetime@Base 4.11.3
OSPPProviderGetSecurity@Base 4.11.3
OSPPProviderGetServicePoints@Base 4.11.3
OSPPProviderGetTransIdRoot@Base 4.11.3
OSPPProviderGetTransIdSentinel@Base 4.11.3
OSPPProviderGetTransactionCollection@Base 4.11.3
OSPPProviderInitializeStorage@Base 4.11.3
OSPPProviderLockTransIdMutex@Base 4.11.3
OSPPProviderNew@Base 4.11.3
OSPPProviderSetAuthorityCertificates@Base 4.11.3
OSPPProviderSetCapabilitiesURLs@Base 4.11.3
OSPPProviderSetCustId@Base 4.11.3
OSPPProviderSetDeviceId@Base 4.11.3
OSPPProviderSetHTTPMaxConnections@Base 4.11.3
OSPPProviderSetHTTPPersistence@Base 4.11.3
OSPPProviderSetHTTPRetryDelay@Base 4.11.3
OSPPProviderSetHTTPRetryLimit@Base 4.11.3
OSPPProviderSetHTTPTimeout@Base 4.11.3
OSPPProviderSetLocalKeys@Base 4.11.3
OSPPProviderSetLocalValidation@Base 4.11.3
OSPPProviderSetNewTransactionAllowed@Base 4.11.3
OSPPProviderSetSPMessageCount@Base 4.11.3
OSPPProviderSetSSLLifetime@Base 4.11.3
OSPPProviderSetServicePoints@Base 4.11.3
OSPPProviderTransactionCollectionDelete@Base 4.11.3
OSPPProviderTransactionCollectionNew@Base 4.11.3
OSPPProviderUnLockTransIdMutex@Base 4.11.3
OSPPReauthReqAddDestinationAlt@Base 4.11.3
OSPPReauthReqAddSourceAlt@Base 4.11.3
OSPPReauthReqAddToken@Base 4.11.3
OSPPReauthReqDelete@Base 4.11.3
OSPPReauthReqFirstDestinationAlt@Base 4.11.3
OSPPReauthReqFirstSourceAlt@Base 4.11.3
OSPPReauthReqFirstToken@Base 4.11.3
OSPPReauthReqGetCallId@Base 4.11.3
OSPPReauthReqGetComponentId@Base 4.11.3
OSPPReauthReqGetCustId@Base 4.11.3
OSPPReauthReqGetDestNumber@Base 4.11.3
OSPPReauthReqGetDestinationAltValue@Base 4.11.3
OSPPReauthReqGetDeviceId@Base 4.11.3
OSPPReauthReqGetDuration@Base 4.11.3
OSPPReauthReqGetRole@Base 4.11.3
OSPPReauthReqGetSourceNumber@Base 4.11.3
OSPPReauthReqGetTimestamp@Base 4.11.3
OSPPReauthReqGetTrxId@Base 4.11.3
OSPPReauthReqHasCallId@Base 4.11.3
OSPPReauthReqHasComponentId@Base 4.11.3
OSPPReauthReqHasCustId@Base 4.11.3
OSPPReauthReqHasDestinationAlt@Base 4.11.3
OSPPReauthReqHasDeviceId@Base 4.11.3
OSPPReauthReqHasDuration@Base 4.11.3
OSPPReauthReqHasMessageId@Base 4.11.3
OSPPReauthReqHasRole@Base 4.11.3
OSPPReauthReqHasSourceAlt@Base 4.11.3
OSPPReauthReqHasTimestamp@Base 4.11.3
OSPPReauthReqHasTrxId@Base 4.11.3
OSPPReauthReqNew@Base 4.11.3
OSPPReauthReqNextDestinationAlt@Base 4.11.3
OSPPReauthReqNextSourceAlt@Base 4.11.3
OSPPReauthReqNextToken@Base 4.11.3
OSPPReauthReqSetCallId@Base 4.11.3
OSPPReauthReqSetCustId@Base 4.11.3
OSPPReauthReqSetDestNumber@Base 4.11.3
OSPPReauthReqSetDeviceId@Base 4.11.3
OSPPReauthReqSetDuration@Base 4.11.3
OSPPReauthReqSetRole@Base 4.11.3
OSPPReauthReqSetSourceNumber@Base 4.11.3
OSPPReauthReqSetTimestamp@Base 4.11.3
OSPPReauthReqSetTrxId@Base 4.11.3
OSPPReauthReqToElement@Base 4.11.3
OSPPReauthRspComponentIdFromElement@Base 4.11.3
OSPPReauthRspDelete@Base 4.11.3
OSPPReauthRspFromElement@Base 4.11.3
OSPPReauthRspGetStatus@Base 4.11.3
OSPPReauthRspGetTNAudit@Base 4.11.3
OSPPReauthRspHasComponentId@Base 4.11.3
OSPPReauthRspHasDest@Base 4.11.3
OSPPReauthRspHasMessageId@Base 4.11.3
OSPPReauthRspHasStatus@Base 4.11.3
OSPPReauthRspMessageIdFromElement@Base 4.11.3
OSPPReauthRspNew@Base 4.11.3
OSPPReauthRspSetComponentId@Base 4.11.3
OSPPReauthRspSetDest@Base 4.11.3
OSPPReauthRspSetMessageId@Base 4.11.3
OSPPReauthRspSetTimestamp@Base 4.11.3
OSPPReauthRspSetTrxId@Base 4.11.3
OSPPReleaseGetName@Base 4.11.3
OSPPRoleFormatGetName@Base 4.11.3
OSPPRoleFormatGetPart@Base 4.11.3
OSPPRoleGetName@Base 4.11.3
OSPPRoleGetPart@Base 4.11.3
OSPPRoleStateGetName@Base 4.11.3
OSPPRoleStateGetPart@Base 4.11.3
OSPPRoleVendorGetName@Base 4.11.3
OSPPRoleVendorGetPart@Base 4.11.3
OSPPSSLLoadCerts@Base 4.11.3
OSPPSSLSessionAlloc@Base 4.11.3
OSPPSSLSessionDelete@Base 4.11.3
OSPPSSLSessionHasSessionId@Base 4.11.3
OSPPSSLSessionInitialize@Base 4.11.3
OSPPSSLSessionNegotiate@Base 4.11.3
OSPPSSLSessionNew@Base 4.11.3
OSPPSSLSessionRead@Base 4.11.3
OSPPSSLSessionWrite@Base 4.11.3
OSPPSSLVerifyCallback@Base 4.11.3
OSPPSSLWrapAttachConnection@Base 4.11.3
OSPPSSLWrapCleanup@Base 4.11.3
OSPPSSLWrapFreeServerRootCACert@Base 4.11.3
OSPPSSLWrapGetData@Base 4.11.3
OSPPSSLWrapGetServerRootCACert@Base 4.11.3
OSPPSSLWrapHandshake@Base 4.11.3
OSPPSSLWrapInit@Base 4.11.3
OSPPSSLWrapSendData@Base 4.11.3
OSPPSSLWrapSessionContextDelete@Base 4.11.3
OSPPSSLWrapSessionContextNew@Base 4.11.3
OSPPSSLWrapSessionGracefulShutdown@Base 4.11.3
OSPPSecCopyAuthorityCertificates@Base 4.11.3
OSPPSecCopyLocalCertificate@Base 4.11.3
OSPPSecCopyPrivateKey@Base 4.11.3
OSPPSecDelete@Base 4.11.3
OSPPSecDeleteAuthorityCertificates@Base 4.11.3
OSPPSecGetLocalCertInfo@Base 4.11.3
OSPPSecGetLocalValidation@Base 4.11.3
OSPPSecGetNumberOfAuthorityCertificates@Base 4.11.3
OSPPSecGetPrivateKeyData@Base 4.11.3
OSPPSecGetSSLLifetime@Base 4.11.3
OSPPSecGetSignerCertSubjectName@Base 4.11.3
OSPPSecLock@Base 4.11.3
OSPPSecNew@Base 4.11.3
OSPPSecSSLLifetimeHasExpired@Base 4.11.3
OSPPSecSSLSessionIdDelete@Base 4.11.3
OSPPSecSSLSessionIdDeleteDB@Base 4.11.3
OSPPSecSSLSessionIdGet@Base 4.11.3
OSPPSecSSLSessionIdInitDB@Base 4.11.3
OSPPSecSSLSessionIdNew@Base 4.11.3
OSPPSecSetAuthorityCertificates@Base 4.11.3
OSPPSecSetDigestAlgorithm@Base 4.11.3
OSPPSecSetLocalCertificate@Base 4.11.3
OSPPSecSetLocalValidation@Base 4.11.3
OSPPSecSetPrivateKey@Base 4.11.3
OSPPSecSetSSLLifetime@Base 4.11.3
OSPPSecSignatureCreate@Base 4.11.3
OSPPSecSignatureVerify@Base 4.11.3
OSPPSecTestContext@Base 4.11.3
OSPPSecUnlock@Base 4.11.3
OSPPSecValidCertChain@Base 4.11.3
OSPPSecVerifyRootAuthorityCertificate@Base 4.11.3
OSPPServiceFromElement@Base 4.11.3
OSPPServiceGetName@Base 4.11.3
OSPPServiceGetPart@Base 4.11.3
OSPPServiceTypeToElement@Base 4.11.3
OSPPSessionIdToElement@Base 4.11.3
OSPPSetTermCause@Base 4.11.3
OSPPSockClose@Base 4.11.3
OSPPSockConnect@Base 4.11.3
OSPPSockConnectAuditURL@Base 4.11.3
OSPPSockConnectServicePoint@Base 4.11.3
OSPPSockDisableNagle@Base 4.11.3
OSPPSockGetHostIP@Base 4.11.3
OSPPSockNew@Base 4.11.3
OSPPSockProcessRequest@Base 4.11.3
OSPPSockRead@Base 4.11.3
OSPPSockSetBlockingIO@Base 4.11.3
OSPPSockSetKeepAlive@Base 4.11.3
OSPPSockWaitTillReady@Base 4.11.3
OSPPSockWrite@Base 4.11.3
OSPPSrcInfoFromElement@Base 4.11.3
OSPPStatsDelete@Base 4.11.3
OSPPStatsGetFloat@Base 4.11.3
OSPPStatsGetFracReceived@Base 4.11.3
OSPPStatsGetFracSent@Base 4.11.3
OSPPStatsGetInteger@Base 4.11.3
OSPPStatsGetMetrics@Base 4.11.3
OSPPStatsGetOneWayMaximum@Base 4.11.3
OSPPStatsGetOneWayMean@Base 4.11.3
OSPPStatsGetOneWayMinimum@Base 4.11.3
OSPPStatsGetOneWaySamples@Base 4.11.3
OSPPStatsGetOneWayVariance@Base 4.11.3
OSPPStatsGetPacket@Base 4.11.3
OSPPStatsGetPktReceived@Base 4.11.3
OSPPStatsGetPktSent@Base 4.11.3
OSPPStatsGetTwoWayMaximum@Base 4.11.3
OSPPStatsGetTwoWayMean@Base 4.11.3
OSPPStatsGetTwoWayMinimum@Base 4.11.3
OSPPStatsGetTwoWaySamples@Base 4.11.3
OSPPStatsGetTwoWayVariance@Base 4.11.3
OSPPStatsHasLossReceived@Base 4.11.3
OSPPStatsHasLossSent@Base 4.11.3
OSPPStatsHasOneWay@Base 4.11.3
OSPPStatsHasTwoWay@Base 4.11.3
OSPPStatsHasValue@Base 4.11.3
OSPPStatsLossReceivedToElement@Base 4.11.3
OSPPStatsLossSentToElement@Base 4.11.3
OSPPStatsNew@Base 4.11.3
OSPPStatsOneWayToElement@Base 4.11.3
OSPPStatsReportUsage@Base 4.11.3
OSPPStatsSetFloat@Base 4.11.3
OSPPStatsSetInteger@Base 4.11.3
OSPPStatsSetMetrics@Base 4.11.3
OSPPStatsSetPacket@Base 4.11.3
OSPPStatsSetReceivedStatistics@Base 4.11.3
OSPPStatsSetSentStatistics@Base 4.11.3
OSPPStatsToElement@Base 4.11.3
OSPPStatsTwoWayToElement@Base 4.11.3
OSPPStatsValueToElement@Base 4.11.3
OSPPStatusDelete@Base 4.11.3
OSPPStatusFromElement@Base 4.11.3
OSPPStatusGetCode@Base 4.11.3
OSPPStatusHasCode@Base 4.11.3
OSPPStatusNew@Base 4.11.3
OSPPStatusSetCode@Base 4.11.3
OSPPStatusSetDesc@Base 4.11.3
OSPPStringToElement@Base 4.11.3
OSPPTNAuditDelete@Base 4.11.3
OSPPTNAuditFromElement@Base 4.11.3
OSPPTNAuditGetMaxMessages@Base 4.11.3
OSPPTNAuditGetState@Base 4.11.3
OSPPTNAuditGetTimeLimit@Base 4.11.3
OSPPTNAuditGetURL@Base 4.11.3
OSPPTNAuditHasMaxMessages@Base 4.11.3
OSPPTNAuditHasState@Base 4.11.3
OSPPTNAuditHasTimeLimit@Base 4.11.3
OSPPTNAuditHasURL@Base 4.11.3
OSPPTNAuditNew@Base 4.11.3
OSPPTNAuditSetMaxMessages@Base 4.11.3
OSPPTNAuditSetState@Base 4.11.3
OSPPTNAuditSetTimeLimit@Base 4.11.3
OSPPTNAuditSetURL@Base 4.11.3
OSPPTNProbe@Base 4.11.3
OSPPTNProbeArrangeList@Base 4.11.3
OSPPTNProbeCleanup@Base 4.11.3
OSPPTNProbeCompare@Base 4.11.3
OSPPTNProbeConnect@Base 4.11.3
OSPPTNProbeEcho@Base 4.11.3
OSPPTNProbeInit@Base 4.11.3
OSPPTNProbePruneList@Base 4.11.3
OSPPTNProbeTimerMS@Base 4.11.3
OSPPTermCauseToElement@Base 4.11.3
OSPPTokenDelete@Base 4.11.3
OSPPTokenFromElement@Base 4.11.3
OSPPTokenGetSize@Base 4.11.3
OSPPTokenGetValue@Base 4.11.3
OSPPTokenInfoDelete@Base 4.11.3
OSPPTokenInfoFromElement@Base 4.11.3
OSPPTokenInfoGetCallId@Base 4.11.3
OSPPTokenInfoGetCallIdSize@Base 4.11.3
OSPPTokenInfoGetCallIdValue@Base 4.11.3
OSPPTokenInfoGetDestNetworkId@Base 4.11.3
OSPPTokenInfoGetDestNumber@Base 4.11.3
OSPPTokenInfoGetDuration@Base 4.11.3
OSPPTokenInfoGetLookAheadDestAlt@Base 4.11.3
OSPPTokenInfoGetLookAheadOSPVersion@Base 4.11.3
OSPPTokenInfoGetLookAheadProtocol@Base 4.11.3
OSPPTokenInfoGetSourceNumber@Base 4.11.3
OSPPTokenInfoGetTrxId@Base 4.11.3
OSPPTokenInfoGetValidAfter@Base 4.11.3
OSPPTokenInfoGetValidUntil@Base 4.11.3
OSPPTokenInfoHasCallId@Base 4.11.3
OSPPTokenInfoHasValidAfter@Base 4.11.3
OSPPTokenInfoNew@Base 4.11.3
OSPPTokenInfoSetCallId@Base 4.11.3
OSPPTokenInfoSetDestNetworkId@Base 4.11.3
OSPPTokenInfoSetDestNumber@Base 4.11.3
OSPPTokenInfoSetDuration@Base 4.11.3
OSPPTokenInfoSetLookAheadDestAlt@Base 4.11.3
OSPPTokenInfoSetLookAheadOSPVersion@Base 4.11.3
OSPPTokenInfoSetLookAheadProtocol@Base 4.11.3
OSPPTokenInfoSetSourceNumber@Base 4.11.3
OSPPTokenInfoSetTrxId@Base 4.11.3
OSPPTokenInfoSetValidAfter@Base 4.11.3
OSPPTokenInfoSetValidUntil@Base 4.11.3
OSPPTokenNew@Base 4.11.3
OSPPTokenToElement@Base 4.11.3
OSPPTransIDTreeDelete@Base 4.11.3
OSPPTransIdAdd@Base 4.11.3
OSPPTransIdCheckAndAdd@Base 4.11.3
OSPPTransIdDelete@Base 4.11.3
OSPPTransIdInit@Base 4.11.3
OSPPTransIdNew@Base 4.11.3
OSPPTransIdPurge@Base 4.11.3
OSPPTransIdRemove@Base 4.11.3
OSPPTransIdSecNow@Base 4.11.3
OSPPTransIdTimeAdd@Base 4.11.3
OSPPTransSetCodec@Base 4.11.3
OSPPTransSetDelay@Base 4.11.3
OSPPTransSetJitter@Base 4.11.3
OSPPTransSetLost@Base 4.11.3
OSPPTransSetOctets@Base 4.11.3
OSPPTransSetPackets@Base 4.11.3
OSPPTransSetRTDelay@Base 4.11.3
OSPPTransactionAccumulateOneWayDelay@Base 4.11.3
OSPPTransactionAccumulateTwoWayDelay@Base 4.11.3
OSPPTransactionBuildReauthRequest@Base 4.11.3
OSPPTransactionBuildUsage@Base 4.11.3
OSPPTransactionBuildUsageFromScratch@Base 4.11.3
OSPPTransactionCollectionGetItem@Base 4.11.3
OSPPTransactionCollectionGetNewItem@Base 4.11.3
OSPPTransactionCollectionRemoveItem@Base 4.11.3
OSPPTransactionDelete@Base 4.11.3
OSPPTransactionDeleteAuthCnf@Base 4.11.3
OSPPTransactionDeleteAuthInd@Base 4.11.3
OSPPTransactionDeleteCapCnf@Base 4.11.3
OSPPTransactionDeleteReauthReq@Base 4.11.3
OSPPTransactionDeleteReauthRsp@Base 4.11.3
OSPPTransactionDeleteRequest@Base 4.11.3
OSPPTransactionDeleteResponse@Base 4.11.3
OSPPTransactionDeleteStatistics@Base 4.11.3
OSPPTransactionDeleteUsageCnf@Base 4.11.3
OSPPTransactionDeleteUsageInd@Base 4.11.3
OSPPTransactionGetAccumAllowed@Base 4.11.3
OSPPTransactionGetCNAM@Base 4.11.3
OSPPTransactionGetContext@Base 4.11.3
OSPPTransactionGetCounter@Base 4.11.3
OSPPTransactionGetDeleteAllowed@Base 4.11.3
OSPPTransactionGetDestAllowed@Base 4.11.3
OSPPTransactionGetDestProtocol@Base 4.11.3
OSPPTransactionGetDestSwitchId@Base 4.13.0
OSPPTransactionGetDestination@Base 4.11.3
OSPPTransactionGetDestinationNetworkId@Base 4.11.3
OSPPTransactionGetFirstDestination@Base 4.11.3
OSPPTransactionGetIdentity@Base 4.11.3
OSPPTransactionGetIsModifyDeviceIdAllowed@Base 4.11.3
OSPPTransactionGetLookAheadInfoIfPresent@Base 4.11.3
OSPPTransactionGetNewContext@Base 4.11.3
OSPPTransactionGetNextDestination@Base 4.11.3
OSPPTransactionGetNumberPortabilityParameters@Base 4.11.3
OSPPTransactionGetOperatorName@Base 4.11.3
OSPPTransactionGetProvider@Base 4.11.3
OSPPTransactionGetReportUsageAllowed@Base 4.11.3
OSPPTransactionGetServiceType@Base 4.11.3
OSPPTransactionGetState@Base 4.11.3
OSPPTransactionGetStatistics@Base 4.11.3
OSPPTransactionGetURL@Base 4.11.3
OSPPTransactionHasStatistics@Base 4.11.3
OSPPTransactionIndicateCapabilities@Base 4.11.3
OSPPTransactionInitializeAtDevice@Base 4.11.3
OSPPTransactionIsDestOSPEnabled@Base 4.11.3
OSPPTransactionModifyDeviceIdentifiers@Base 4.11.3
OSPPTransactionNew@Base 4.11.3
OSPPTransactionPrepareAndQueMessage@Base 4.11.3
OSPPTransactionProcessReturn@Base 4.11.3
OSPPTransactionRecordFailure@Base 4.11.3
OSPPTransactionReinitializeAtDevice@Base 4.11.3
OSPPTransactionReportUsage@Base 4.11.3
OSPPTransactionRequestAuthorisation@Base 4.11.3
OSPPTransactionRequestNew@Base 4.11.3
OSPPTransactionRequestReauthorisation@Base 4.11.3
OSPPTransactionResponseBuild@Base 4.11.3
OSPPTransactionSetApplicationId@Base 4.11.3
OSPPTransactionSetCDRProxy@Base 4.11.3
OSPPTransactionSetCallCategory@Base 4.11.3
OSPPTransactionSetCallPartyInfo@Base 4.11.3
OSPPTransactionSetCallType@Base 4.11.3
OSPPTransactionSetChargingVector@Base 4.13.0
OSPPTransactionSetCodec@Base 4.11.3
OSPPTransactionSetCustomInfo@Base 4.11.3
OSPPTransactionSetDelay@Base 4.11.3
OSPPTransactionSetDestAudioAddr@Base 4.11.3
OSPPTransactionSetDestNetworkId@Base 4.11.3
OSPPTransactionSetDestRealm@Base 4.11.3
OSPPTransactionSetDestServiceProvider@Base 4.13.0
OSPPTransactionSetDestSwitchId@Base 4.13.0
OSPPTransactionSetDestVideoAddr@Base 4.11.3
OSPPTransactionSetDestinationCount@Base 4.11.3
OSPPTransactionSetDiversion@Base 4.11.3
OSPPTransactionSetFingerPrint@Base 4.11.3
OSPPTransactionSetICPIF@Base 4.11.3
OSPPTransactionSetIdentity@Base 4.11.3
OSPPTransactionSetJIP@Base 4.11.3
OSPPTransactionSetJitter@Base 4.11.3
OSPPTransactionSetLost@Base 4.11.3
OSPPTransactionSetMOSCQ@Base 4.11.3
OSPPTransactionSetMOSLQ@Base 4.11.3
OSPPTransactionSetNetworkIds@Base 4.11.3
OSPPTransactionSetNetworkTranslatedCalledNumber@Base 4.11.3
OSPPTransactionSetNetworkType@Base 4.11.3
OSPPTransactionSetNumberPortability@Base 4.11.3
OSPPTransactionSetOctets@Base 4.11.3
OSPPTransactionSetOperatorName@Base 4.11.3
OSPPTransactionSetPackets@Base 4.11.3
OSPPTransactionSetPricingInfo@Base 4.11.3
OSPPTransactionSetProtocol@Base 4.11.3
OSPPTransactionSetProviderPDD@Base 4.11.3
OSPPTransactionSetProxyEgressAddr@Base 4.11.3
OSPPTransactionSetProxyIngressAddr@Base 4.11.3
OSPPTransactionSetRFactor@Base 4.11.3
OSPPTransactionSetRTDelay@Base 4.11.3
OSPPTransactionSetRelatedReason@Base 4.11.3
OSPPTransactionSetRequestDate@Base 4.11.3
OSPPTransactionSetRoleInfo@Base 4.11.3
OSPPTransactionSetSIPHeader@Base 4.11.3
OSPPTransactionSetServiceProvider@Base 4.11.3
OSPPTransactionSetServiceType@Base 4.11.3
OSPPTransactionSetSessionId@Base 4.11.3
OSPPTransactionSetSetupAttempt@Base 4.11.3
OSPPTransactionSetSrcAudioAddr@Base 4.11.3
OSPPTransactionSetSrcNetworkId@Base 4.11.3
OSPPTransactionSetSrcRealm@Base 4.11.3
OSPPTransactionSetSrcSwitchId@Base 4.13.0
OSPPTransactionSetSrcVideoAddr@Base 4.11.3
OSPPTransactionSetState@Base 4.11.3
OSPPTransactionSetSystemId@Base 4.11.3
OSPPTransactionSetTermCause@Base 4.11.3
OSPPTransactionSetTotalSetupAttempts@Base 4.11.3
OSPPTransactionSetTransferId@Base 4.11.3
OSPPTransactionSetTransferStatus@Base 4.11.3
OSPPTransactionSetTwoWayDelay@Base 4.11.3
OSPPTransactionSetUserAgent@Base 4.11.3
OSPPTransactionSetVideoCodec@Base 4.11.3
OSPPTransactionSetVideoDelay@Base 4.11.3
OSPPTransactionSetVideoJitter@Base 4.11.3
OSPPTransactionSetVideoLost@Base 4.11.3
OSPPTransactionSetVideoOctets@Base 4.11.3
OSPPTransactionSetVideoPackets@Base 4.11.3
OSPPTransactionSetVideoRTDelay@Base 4.11.3
OSPPTransactionUpdateCounter@Base 4.11.3
OSPPTransactionValidateAuthorisation@Base 4.11.3
OSPPTransactionValidateReAuthorisation@Base 4.11.3
OSPPTransactionValidateTokenCert@Base 4.11.3
OSPPTransactionVerifyAuthCnf@Base 4.11.3
OSPPTransactionVerifyUsageCnf@Base 4.11.3
OSPPTransferStatusGetName@Base 4.11.3
OSPPUsageCnfComponentIdFromElement@Base 4.11.3
OSPPUsageCnfDelete@Base 4.11.3
OSPPUsageCnfFromElement@Base 4.11.3
OSPPUsageCnfGetCSAudit@Base 4.11.3
OSPPUsageCnfGetComponentId@Base 4.11.3
OSPPUsageCnfGetStatus@Base 4.11.3
OSPPUsageCnfGetTNAudit@Base 4.11.3
OSPPUsageCnfHasComponentId@Base 4.11.3
OSPPUsageCnfHasMessageId@Base 4.11.3
OSPPUsageCnfHasStatus@Base 4.11.3
OSPPUsageCnfMessageIdFromElement@Base 4.11.3
OSPPUsageCnfNew@Base 4.11.3
OSPPUsageCnfSetComponentId@Base 4.11.3
OSPPUsageCnfSetMessageId@Base 4.11.3
OSPPUsageCnfSetTimestamp@Base 4.11.3
OSPPUsageDetailFromElement@Base 4.11.3
OSPPUsageFromElement@Base 4.11.3
OSPPUsageIndAddDestinationAlt@Base 4.11.3
OSPPUsageIndAddSourceAlt@Base 4.11.3
OSPPUsageIndCopyDeviceInfo@Base 4.11.3
OSPPUsageIndCopySourceAlt@Base 4.11.3
OSPPUsageIndCopyTermCause@Base 4.11.3
OSPPUsageIndDelete@Base 4.11.3
OSPPUsageIndFirstDestinationAlt@Base 4.11.3
OSPPUsageIndFirstSourceAlt@Base 4.11.3
OSPPUsageIndGetAlertTime@Base 4.11.3
OSPPUsageIndGetCallId@Base 4.11.3
OSPPUsageIndGetCodec@Base 4.11.3
OSPPUsageIndGetComponentId@Base 4.11.3
OSPPUsageIndGetConferenceId@Base 4.11.3
OSPPUsageIndGetConnectTime@Base 4.11.3
OSPPUsageIndGetCustId@Base 4.11.3
OSPPUsageIndGetDestNumber@Base 4.11.3
OSPPUsageIndGetDestinationAltSize@Base 4.11.3
OSPPUsageIndGetDestinationCount@Base 4.11.3
OSPPUsageIndGetDeviceId@Base 4.11.3
OSPPUsageIndGetDuration@Base 4.11.3
OSPPUsageIndGetEndTime@Base 4.11.3
OSPPUsageIndGetHasConfId@Base 4.11.3
OSPPUsageIndGetMessageId@Base 4.11.3
OSPPUsageIndGetPostDialDelay@Base 4.11.3
OSPPUsageIndGetProtocol@Base 4.11.3
OSPPUsageIndGetReleaseSource@Base 4.11.3
OSPPUsageIndGetRole@Base 4.11.3
OSPPUsageIndGetSessionId@Base 4.11.3
OSPPUsageIndGetSourceNumber@Base 4.11.3
OSPPUsageIndGetStartTime@Base 4.11.3
OSPPUsageIndGetTCCode@Base 4.11.3
OSPPUsageIndGetTCDesc@Base 4.11.3
OSPPUsageIndGetTimestamp@Base 4.11.3
OSPPUsageIndGetTransactionId@Base 4.11.3
OSPPUsageIndHasCallId@Base 4.11.3
OSPPUsageIndHasCodec@Base 4.11.3
OSPPUsageIndHasComponentId@Base 4.11.3
OSPPUsageIndHasCustId@Base 4.11.3
OSPPUsageIndHasDestinationAlt@Base 4.11.3
OSPPUsageIndHasDeviceId@Base 4.11.3
OSPPUsageIndHasDuration@Base 4.11.3
OSPPUsageIndHasMessageId@Base 4.11.3
OSPPUsageIndHasPDD@Base 4.11.3
OSPPUsageIndHasProtocol@Base 4.11.3
OSPPUsageIndHasRole@Base 4.11.3
OSPPUsageIndHasSessionId@Base 4.11.3
OSPPUsageIndHasSourceAlt@Base 4.11.3
OSPPUsageIndHasStatistics@Base 4.11.3
OSPPUsageIndHasTermCause@Base 4.11.3
OSPPUsageIndHasTimestamp@Base 4.11.3
OSPPUsageIndHasTransactionId@Base 4.11.3
OSPPUsageIndMergeSourceAlt@Base 4.11.3
OSPPUsageIndMoveDestinationAlt@Base 4.11.3
OSPPUsageIndMoveDeviceInfo@Base 4.11.3
OSPPUsageIndMoveSourceAlt@Base 4.11.3
OSPPUsageIndNew@Base 4.11.3
OSPPUsageIndNextDestinationAlt@Base 4.11.3
OSPPUsageIndNextSourceAlt@Base 4.11.3
OSPPUsageIndSetAlertTime@Base 4.11.3
OSPPUsageIndSetCallId@Base 4.11.3
OSPPUsageIndSetCodec@Base 4.11.3
OSPPUsageIndSetComponentId@Base 4.11.3
OSPPUsageIndSetConferenceId@Base 4.11.3
OSPPUsageIndSetConnectTime@Base 4.11.3
OSPPUsageIndSetCustId@Base 4.11.3
OSPPUsageIndSetDestNumber@Base 4.11.3
OSPPUsageIndSetDestinationCount@Base 4.11.3
OSPPUsageIndSetDeviceId@Base 4.11.3
OSPPUsageIndSetDuration@Base 4.11.3
OSPPUsageIndSetEndTime@Base 4.11.3
OSPPUsageIndSetHasPDDInfo@Base 4.11.3
OSPPUsageIndSetPostDialDelay@Base 4.11.3
OSPPUsageIndSetProtocol@Base 4.11.3
OSPPUsageIndSetReleaseSource@Base 4.11.3
OSPPUsageIndSetRole@Base 4.11.3
OSPPUsageIndSetSessionId@Base 4.11.3
OSPPUsageIndSetSourceNumber@Base 4.11.3
OSPPUsageIndSetStartTime@Base 4.11.3
OSPPUsageIndSetStatistics@Base 4.11.3
OSPPUsageIndSetTermCause@Base 4.11.3
OSPPUsageIndSetTimestamp@Base 4.11.3
OSPPUsageIndSetTransactionId@Base 4.11.3
OSPPUsageIndToElement@Base 4.11.3
OSPPUsageToElement@Base 4.11.3
OSPPUtilBuildString@Base 4.11.3
OSPPUtilGetErrorFromStatus@Base 4.11.3
OSPPUtilGetRandom@Base 4.11.3
OSPPUtilIsDottedNumericIP@Base 4.11.3
OSPPUtilLoadPEMCert@Base 4.11.3
OSPPUtilLoadPEMPrivateKey@Base 4.11.3
OSPPUtilMallocAndCopySubString@Base 4.11.3
OSPPUtilMemCaseCmp@Base 4.11.3
OSPPUtilStringToLowercase@Base 4.11.3
OSPPX509CertCheckCertificateData@Base 4.11.3
OSPPX509CertCreate@Base 4.11.3
OSPPX509CertDelete@Base 4.11.3
OSPPX509CertGetCertificate@Base 4.11.3
OSPPX509CertGetCustDeviceId@Base 4.11.3
OSPPX509CertGetElement@Base 4.11.3
OSPPX509CertIsParentCertificate@Base 4.11.3
OSPPX509CertSetCertificate@Base 4.11.3
OSPPX509CertTestContext@Base 4.11.3
OSPPX509CertValidateCertificate@Base 4.11.3
OSPPXMLAddReference@Base 4.11.3
OSPPXMLAttrDelete@Base 4.11.3
OSPPXMLAttrGetName@Base 4.11.3
OSPPXMLAttrGetValue@Base 4.11.3
OSPPXMLAttrNew@Base 4.11.3
OSPPXMLDereference@Base 4.11.3
OSPPXMLDocAddAttr@Base 4.11.3
OSPPXMLDocAddAttrName@Base 4.11.3
OSPPXMLDocAddChar@Base 4.11.3
OSPPXMLDocAddElem@Base 4.11.3
OSPPXMLDocAddElemName@Base 4.11.3
OSPPXMLDocCreate@Base 4.11.3
OSPPXMLDocGetAttr@Base 4.11.3
OSPPXMLDocGetAttrs@Base 4.11.3
OSPPXMLDocGetCdata@Base 4.11.3
OSPPXMLDocGetContent@Base 4.11.3
OSPPXMLDocGetEncoding@Base 4.11.3
OSPPXMLDocGetName@Base 4.11.3
OSPPXMLDocIsAttlist@Base 4.11.3
OSPPXMLDocIsCdata@Base 4.11.3
OSPPXMLDocIsCdataEnd@Base 4.11.3
OSPPXMLDocIsComment@Base 4.11.3
OSPPXMLDocIsDTD@Base 4.11.3
OSPPXMLDocIsDecl@Base 4.11.3
OSPPXMLDocIsElementDecl@Base 4.11.3
OSPPXMLDocIsEntityDecl@Base 4.11.3
OSPPXMLDocIsMatch@Base 4.11.3
OSPPXMLDocIsPI@Base 4.11.3
OSPPXMLDocParse@Base 4.11.3
OSPPXMLDocParseElem@Base 4.11.3
OSPPXMLDocPeekCharN@Base 4.11.3
OSPPXMLDocReadChar@Base 4.11.3
OSPPXMLDocSkipAllMisc@Base 4.11.3
OSPPXMLDocSkipAttlist@Base 4.11.3
OSPPXMLDocSkipComment@Base 4.11.3
OSPPXMLDocSkipDTD@Base 4.11.3
OSPPXMLDocSkipDecl@Base 4.11.3
OSPPXMLDocSkipElementDecl@Base 4.11.3
OSPPXMLDocSkipEntityDecl@Base 4.11.3
OSPPXMLDocSkipMarkupDecl@Base 4.11.3
OSPPXMLDocSkipPI@Base 4.11.3
OSPPXMLDocSkipPast@Base 4.11.3
OSPPXMLDocSkipPastCdataBeg@Base 4.11.3
OSPPXMLDocSkipPastCdataEnd@Base 4.11.3
OSPPXMLDocSkipPastChar@Base 4.11.3
OSPPXMLDocSkipProlog@Base 4.11.3
OSPPXMLDocSkipWhite@Base 4.11.3
OSPPXMLDocTranslateEntity@Base 4.11.3
OSPPXMLElemAddAttr@Base 4.11.3
OSPPXMLElemAddChild@Base 4.11.3
OSPPXMLElemDelete@Base 4.11.3
OSPPXMLElemFirstAttr@Base 4.11.3
OSPPXMLElemFirstChild@Base 4.11.3
OSPPXMLElemGetName@Base 4.11.3
OSPPXMLElemGetValue@Base 4.11.3
OSPPXMLElemNew@Base 4.11.3
OSPPXMLElemNextAttr@Base 4.11.3
OSPPXMLElemNextChild@Base 4.11.3
OSPPXMLElementProcess@Base 4.11.3
OSPPXMLEscape@Base 4.11.3
OSPPXMLGetDataType@Base 4.11.3
OSPPXMLIsChar@Base 4.11.3
OSPPXMLIsDigit@Base 4.11.3
OSPPXMLIsLetter@Base 4.11.3
OSPPXMLIsName1@Base 4.11.3
OSPPXMLIsName@Base 4.11.3
OSPPXMLIsSpace@Base 4.11.3
OSPPXMLMessageCreate@Base 4.11.3
OSPPXMLMessageParse@Base 4.11.3
OSPPXMLMessageProcess@Base 4.11.3
OSPPXMLUnescape@Base 4.11.3
OSPVProviderCollection@Base 4.11.3
OSPVProviderMutex@Base 4.11.3
OSPVXMLCType@Base 4.11.3
OSPVXMLDocEntities@Base 4.11.3
OSPVXMLDocEntitiesSize@Base 4.11.3
OSPV_ATYPE_DESCS@Base 4.11.3
OSPV_MATTR_DESCS@Base 4.11.3
OSPV_MELEM_DESCS@Base 4.11.3
OSPV_MELEM_SIPHEADER@Base 4.11.3
OSPV_PROTNAME_DESCS@Base 4.11.3
OSPV_RELEASE_DESCS@Base 4.11.3
OSPV_RFORMAT_DESCS@Base 4.11.3
OSPV_RSTATE_DESCS@Base 4.11.3
OSPV_RTYPE_DESCS@Base 4.11.3
OSPV_RVENDOR_DESCS@Base 4.11.3
OSPV_STYPE_DESCS@Base 4.11.3
OSPV_TSTATUS_DESCS@Base 4.11.3
OpenSSLErrorLog@Base 4.11.3
PTPAddParseResults@Base 4.11.3
PTPDataRefAddRef@Base 4.11.3
PTPDataRefIdGetValue@Base 4.11.3
PTPDataReferencesMatch@Base 4.11.3
PTPResultIsRuleComponent@Base 4.11.3
PTPResultUpdateDataRef@Base 4.11.3
PTPResultsCopy@Base 4.11.3
PTPResultsCreate@Base 4.11.3
PTPResultsDelete@Base 4.11.3
PTPResultsEndOfList@Base 4.11.3
PTPResultsGetElement@Base 4.11.3
PTPRuleGetParseTableId@Base 4.11.3
PTPRuleIsDERFormat@Base 4.11.3
PTPRuleIsDerived@Base 4.11.3
PTPRuleIsOptional@Base 4.11.3
PTPRuleIsPrimitive@Base 4.11.3
PTPTableGet@Base 4.11.3
PTPTableGetRule@Base 4.11.3
__mptr@Base 4.11.3
bio_dump_cb@Base 4.11.3
bio_stdout@Base 4.11.3
cha_engine_init@Base 4.11.3
osppHttpCopySPList@Base 4.11.3
osppHttpDeleteServicePointList@Base 4.11.3
osppHttpGetIdleHttpConn@Base 4.11.3
osppHttpGetServicePointList@Base 4.11.3
pthreads_locking_callback@Base 4.11.3
pthreads_thread_id@Base 4.11.3
rand_init@Base 4.11.3
thread_cleanup@Base 4.11.3
thread_setup@Base 4.11.3
|