1 /* ------------------------------------------------------------------ 2 * Copyright (C) 1998-2009 PacketVideo 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either 13 * express or implied. 14 * See the License for the specific language governing permissions 15 * and limitations under the License. 16 * ------------------------------------------------------------------- 17 */ 18 // ---------------------------------------------------------------------- 19 // 20 // This Software is an original work of authorship of PacketVideo Corporation. 21 // Portions of the Software were developed in collaboration with NTT DoCoMo, 22 // Inc. or were derived from the public domain or materials licensed from 23 // third parties. Title and ownership, including all intellectual property 24 // rights in and to the Software shall remain with PacketVideo Corporation 25 // and NTT DoCoMo, Inc. 26 // 27 // ----------------------------------------------------------------------- 28 /*****************************************************************************/ 29 /* file name : tsc_clc.h */ 30 /* file contents : */ 31 /* draw : '96.10.09 */ 32 /*---------------------------------------------------------------------------*/ 33 /* amendment */ 34 /* Copyright (C) 1996 NTT DoCoMo */ 35 /*****************************************************************************/ 36 37 #ifndef TSCCLC_H_INCLUDED 38 #define TSCCLC_H_INCLUDED 39 40 #ifndef PVLOGGER_H_INCLUDED 41 #include "pvlogger.h" 42 #endif 43 44 #include "h245.h" 45 46 47 class TSC_clc 48 { 49 public: 50 TSC_clc()51 TSC_clc() {}; ~TSC_clc()52 ~TSC_clc() {}; 53 SetH245(H245 * aH245)54 void SetH245(H245* aH245) 55 { 56 iH245 = aH245; 57 } 58 59 /* Close Logical Channel */ 60 void ClcClsReq(uint32); 61 void ClcClsRps(uint32); 62 void ClcRjtReq(uint32); 63 private: 64 H245* iH245; 65 }; 66 67 #endif 68 69