blob: a376564aaed13207d920a46a54aee8b8da6c1d3b [file] [log] [blame]
rjw6c1fd8f2022-11-30 14:33:01 +08001/*****************************************************************************
2* Copyright Statement:
3* --------------------
4* This software is protected by Copyright and the information contained
5* herein is confidential. The software may not be copied and the information
6* contained herein may not be used or disclosed except with the written
7* permission of MediaTek Inc. (C) 2012
8*
9* BY OPENING THIS FILE, BUYER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
10* THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
11* RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO BUYER ON
12* AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
13* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
14* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
15* NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
16* SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
17* SUPPLIED WITH THE MEDIATEK SOFTWARE, AND BUYER AGREES TO LOOK ONLY TO SUCH
18* THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. MEDIATEK SHALL ALSO
19* NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE RELEASES MADE TO BUYER'S
20* SPECIFICATION OR TO CONFORM TO A PARTICULAR STANDARD OR OPEN FORUM.
21*
22* BUYER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND CUMULATIVE
23* LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
24* AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
25* OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY BUYER TO
26* MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE.
27*
28* THE TRANSACTION CONTEMPLATED HEREUNDER SHALL BE CONSTRUED IN ACCORDANCE
29* WITH THE LAWS OF THE STATE OF CALIFORNIA, USA, EXCLUDING ITS CONFLICT OF
30* LAWS PRINCIPLES. ANY DISPUTES, CONTROVERSIES OR CLAIMS ARISING THEREOF AND
31* RELATED THERETO SHALL BE SETTLED BY ARBITRATION IN SAN FRANCISCO, CA, UNDER
32* THE RULES OF THE INTERNATIONAL CHAMBER OF COMMERCE (ICC).
33*
34*****************************************************************************/
35
36/*******************************************************************************
37 * Filename:
38 * ---------
39 * d2pm_wo_struct.h
40 *
41 * Project:
42 * --------
43 *
44 *
45 * Description:
46 * ------------
47 *
48 *
49 * Author:
50 * -------
51 *
52 *
53 *
54 * ==========================================================================
55 *
56 ****************************************************************************/
57
58#ifndef _D2PM_WO_STRUCT_H_
59#define _D2PM_WO_STRUCT_H_
60
61#include "kal_general_types.h"
62#include "kal_public_defs.h"
63#include "ps_public_enum.h"
64#include "d2pm_public_defs.h"
65#include "netinfo_common_struct.h"
66
67// Implementation
68/*******************************************************************************
69* D2PM to WO REQ *
70*******************************************************************************/
71typedef struct
72{
73 kal_uint32 src_id;
74}d2pm_wo_comm_prv_struct;
75
76typedef ip_info_struct d2pm_wo_ip_info_struct;
77typedef net_info_struct d2pm_wo_net_info_struct;
78typedef if_info_struct d2pm_wo_if_info_struct;
79
80typedef struct
81{
82 kal_uint32 src_id;
83 d2pm_wo_ip_info_struct ip_info;
84 d2pm_wo_if_info_struct if_info;
85 kal_bool pcscf_restore;
86 kal_bool fb_cid_present;
87 kal_uint32 fb_cid;
88}d2pm_wo_act_data_call_req_prv_struct;
89
90typedef d2pm_wo_comm_prv_struct d2pm_wo_deact_data_call_req_prv_struct;
91typedef d2pm_wo_comm_prv_struct d2pm_wo_abort_data_call_req_prv_struct;
92typedef d2pm_wo_comm_prv_struct d2pm_wo_mod_data_call_req_prv_struct;
93typedef d2pm_wo_comm_prv_struct d2pm_wo_get_data_call_list_req_prv_struct;
94typedef d2pm_wo_comm_prv_struct d2pm_wo_get_dynamic_param_req_prv_struct;
95
96typedef struct
97{
98 kal_uint32 src_id;
99 kal_uint32 linked_pfid;
100}d2pm_wo_set_packet_filter_req_prv_struct;
101
102/*******************************************************************************
103* WO TO D2PM CNF *
104*******************************************************************************/
105typedef d2pm_wo_comm_prv_struct d2pm_wo_act_data_call_cnf_prv_struct;
106typedef d2pm_wo_comm_prv_struct d2pm_wo_deact_data_call_cnf_prv_struct;
107typedef d2pm_wo_comm_prv_struct d2pm_wo_abort_data_call_cnf_prv_struct;
108typedef d2pm_wo_comm_prv_struct d2pm_wo_mod_data_call_cnf_prv_struct;
109typedef d2pm_wo_comm_prv_struct d2pm_wo_get_data_call_list_cnf_prv_struct;
110typedef d2pm_wo_comm_prv_struct d2pm_wo_get_dynamic_param_cnf_prv_struct;
111
112/*******************************************************************************
113* WO TO D2PM IND *
114*******************************************************************************/
115typedef struct
116{
117 kal_uint32 src_id;
118 kal_uint8 apn[APN_STRING_LEN];
119 d2pm_wo_net_info_struct net_info;
120}d2pm_wo_get_dynamic_param_ind_prv_struct;
121
122typedef struct
123{
124 kal_uint32 src_id;
125 d2pm_wo_ip_info_struct ip_info;
126}d2pm_wo_get_pdp_address_ind_prv_struct;
127
128typedef d2pm_wo_comm_prv_struct d2pm_wo_pdn_disconn_ind_prv_struct;
129typedef d2pm_wo_comm_prv_struct d2pm_wo_pdn_nw_act_ind_prv_struct;
130typedef d2pm_wo_pdn_disconn_ind_prv_struct d2pm_wo_pdn_nw_deact_ind_prv_struct; // D2PM uses this one
131typedef d2pm_wo_comm_prv_struct d2pm_wo_get_data_call_list_ind_prv_struct;
132typedef d2pm_wo_comm_prv_struct d2pm_wo_get_secondary_dynamic_param_ind_prv_struct;
133typedef d2pm_wo_comm_prv_struct d2pm_wo_get_qos_ind_prv_struct;
134typedef d2pm_wo_comm_prv_struct d2pm_wo_get_tft_ind_prv_struct;
135typedef d2pm_wo_comm_prv_struct d2pm_wo_get_packet_filter_ind_prv_struct;
136typedef d2pm_wo_comm_prv_struct d2pm_wo_mod_data_call_ind_prv_struct;
137
138#endif /* _D2PM_WO_STRUCT_H */
139