1 /* 2 * Copyright (C) 2014 The Android Open Source Project 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 express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #ifndef RIL_EX_H_INCLUDED 18 #define RIL_EX_H_INCLUDED 19 20 #include <telephony/ril.h> 21 #include <telephony/record_stream.h> 22 23 #define NUM_ELEMS_SOCKET(a) (sizeof (a) / sizeof (a)[0]) 24 25 struct ril_event; 26 27 void rilEventAddWakeup_helper(struct ril_event *ev); 28 int blockingWrite_helper(int fd, void* data, size_t len); 29 30 enum SocketWakeType {DONT_WAKE, WAKE_PARTIAL}; 31 32 typedef enum { 33 RIL_TELEPHONY_SOCKET, 34 RIL_SAP_SOCKET 35 } RIL_SOCKET_TYPE; 36 37 typedef struct SocketListenParam { 38 RIL_SOCKET_ID socket_id; 39 int fdListen; 40 int fdCommand; 41 const char* processName; 42 struct ril_event* commands_event; 43 struct ril_event* listen_event; 44 void (*processCommandsCallback)(int fd, short flags, void *param); 45 RecordStream *p_rs; 46 RIL_SOCKET_TYPE type; 47 } SocketListenParam; 48 49 #endif 50