| /***************************************************************************** |
| * Copyright Statement: |
| * -------------------- |
| * This software is protected by Copyright and the information contained |
| * herein is confidential. The software may not be copied and the information |
| * contained herein may not be used or disclosed except with the written |
| * permission of MediaTek Inc. (C) 2005 |
| * |
| * BY OPENING THIS FILE, BUYER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES |
| * THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE") |
| * RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO BUYER ON |
| * AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES, |
| * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF |
| * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT. |
| * NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE |
| * SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR |
| * SUPPLIED WITH THE MEDIATEK SOFTWARE, AND BUYER AGREES TO LOOK ONLY TO SUCH |
| * THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. MEDIATEK SHALL ALSO |
| * NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE RELEASES MADE TO BUYER'S |
| * SPECIFICATION OR TO CONFORM TO A PARTICULAR STANDARD OR OPEN FORUM. |
| * |
| * BUYER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND CUMULATIVE |
| * LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE, |
| * AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE, |
| * OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY BUYER TO |
| * MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE. |
| * |
| * THE TRANSACTION CONTEMPLATED HEREUNDER SHALL BE CONSTRUED IN ACCORDANCE |
| * WITH THE LAWS OF THE STATE OF CALIFORNIA, USA, EXCLUDING ITS CONFLICT OF |
| * LAWS PRINCIPLES. ANY DISPUTES, CONTROVERSIES OR CLAIMS ARISING THEREOF AND |
| * RELATED THERETO SHALL BE SETTLED BY ARBITRATION IN SAN FRANCISCO, CA, UNDER |
| * THE RULES OF THE INTERNATIONAL CHAMBER OF COMMERCE (ICC). |
| * |
| *****************************************************************************/ |
| |
| /***************************************************************************** |
| * |
| * Filename: |
| * --------- |
| * atp_xcap_struct.h |
| * |
| * Description: |
| * ------------ |
| * ATP related message identity definition |
| * |
| * Author: |
| * ------- |
| * ------- |
| * |
| ****************************************************************************/ |
| #ifndef _ATP_XCAP_STRUCT_H |
| #define _ATP_XCAP_STRUCT_H |
| |
| #include "atp_public_defs.h" |
| #include "ims_interface_md.h" |
| #include "netinfo_common_struct.h" |
| #include "ps_public_enum_public.h" |
| #include "xcap_if.h" |
| |
| typedef struct { |
| LOCAL_PARA_HDR |
| kal_uint8 xui_info[XCAP_XUI_MGR_INFO_MAX_SIZE]; |
| }atp_xcap_xui_info_ind_struct; |
| |
| /* |
| typedef enum { |
| IMC_REG_STATE_UNREGISTERED = 0, |
| IMC_REG_STATE_REGISTERING, |
| IMC_REG_STATE_REGISTERED, |
| IMC_REG_STATE_UNREGISTERING |
| } imc_reg_state_enum; |
| */ |
| |
| typedef struct { |
| LOCAL_PARA_HDR |
| ims_reg_state_enum reg_state; |
| } atp_xcap_ims_reg_status_ind_struct; |
| |
| typedef struct { |
| LOCAL_PARA_HDR |
| proxy_cmd_result_enum result; |
| kal_uint32 error_code; |
| } atp_xcap_egba_atcmd_cnf_struct; |
| |
| typedef struct |
| { |
| LOCAL_PARA_HDR |
| kal_uint8 ps_reg_state; |
| } atp_xcap_ps_reg_status_ind_struct; |
| |
| typedef struct |
| { |
| LOCAL_PARA_HDR |
| ims_reg_state_enum reg_state; // REGISTERED, UNREGISTERED, UNREGISTERED_START, REGISTERED_START |
| ims_reg_type_enum reg_type; // normal or emergency reg |
| ims_reg_service_enum reg_service; //none, voice, txt, sms, video, all, both(voice+sms) |
| ims_dereg_cause_enum dereg_cause; //unspecified, power off, rf off |
| ims_access_rat_enum rat; //lte, wifi, ehrpd, gsm, umts |
| ims_ecmp_enum ecmp; //unspec, lte, wlan |
| } atp_xcap_eireg_ind_struct; |
| |
| typedef struct { |
| LOCAL_PARA_HDR |
| kal_uint8 mobile_data; |
| kal_uint8 data_roaming; |
| } atp_xcap_ecncfg_ind_struct; |
| |
| typedef struct { |
| LOCAL_PARA_HDR |
| kal_bool vodata_en; |
| kal_uint8 data_mode; |
| kal_uint8 allow_rat; |
| } atp_xcap_evodata_ind_struct; |
| |
| typedef struct { |
| LOCAL_PARA_HDR |
| kal_uint8 cfg_name[64]; |
| kal_uint8 cfg_value[256]; |
| } atp_xcap_excapcfgset_req_struct; |
| |
| typedef struct { |
| LOCAL_PARA_HDR |
| kal_uint8 cfg_name[64]; |
| } atp_xcap_excapcfgget_req_struct; |
| |
| typedef struct { |
| LOCAL_PARA_HDR |
| kal_uint8 cfg_name[64]; |
| kal_int32 status; |
| } atp_xcap_excapcfgset_cnf_struct; |
| |
| typedef atp_xcap_excapcfgset_req_struct atp_xcap_excapcfgget_cnf_struct; |
| typedef atp_xcap_ps_reg_status_ind_struct atp_xcap_conn_mgr_egreg_ind_struct; //MSG_ID_ATP_XCAP_CONN_MGR_EGREG_IND |
| typedef atp_xcap_eireg_ind_struct atp_xcap_conn_mgr_eireg_ind_struct; //MSG_ID_ATP_XCAP_CONN_MGR_EIREG_IND |
| |
| #endif /* _ATP_XCAP_STRUCT_H */ |