From c97b2849c57f46d6e2c0f603bf65a05da2c9cb71 Mon Sep 17 00:00:00 2001 From: Nathan Harold Date: Tue, 2 Feb 2016 12:04:35 -0800 Subject: [PATCH] Add Error to RIL.h for Rate Limited Requests Bug: 26767732 Change-Id: I7289f53d0d16b6f066d8e469644c81bbb7d4566c --- include/telephony/ril.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/telephony/ril.h b/include/telephony/ril.h index 7d58905..a50f248 100644 --- a/include/telephony/ril.h +++ b/include/telephony/ril.h @@ -150,8 +150,8 @@ typedef enum { RIL_E_INVALID_MODEM_STATE = 46, /* Can not process the request in current Modem state */ RIL_E_INVALID_CALL_ID = 47, /* Received invalid call id in request */ RIL_E_NO_SMS_TO_ACK = 48, /* ACK received when there is no SMS to ack */ - RIL_E_NETWORK_ERR = 49 /* Received error from network */ - + RIL_E_NETWORK_ERR = 49, /* Received error from network */ + RIL_E_REQUEST_RATE_LIMITED = 50 /* Operation denied due to overly-frequent requests */ } RIL_Errno; typedef enum { -- 2.11.0