Thu, 15 Jan 2015 15:59:08 +0100
Implement a real Private Browsing Mode condition by changing the API/ABI;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | #ifndef _RESET_API_H_ |
michael@0 | 6 | #define _RESET_API_H_ |
michael@0 | 7 | |
michael@0 | 8 | |
michael@0 | 9 | /** |
michael@0 | 10 | * resetRequest |
michael@0 | 11 | * |
michael@0 | 12 | * This function tells the reset Manager that the SIPCC module |
michael@0 | 13 | * wants to do a HARD RESET. This is most likely because of a request |
michael@0 | 14 | * from the CUCM. |
michael@0 | 15 | * |
michael@0 | 16 | * The response received for this request is asynchronous and |
michael@0 | 17 | * should be handled via event provided by reset manager. |
michael@0 | 18 | * The CCAPI_Service_shutdown api needs to be called for the |
michael@0 | 19 | * handling of the response to the reset request |
michael@0 | 20 | * |
michael@0 | 21 | */ |
michael@0 | 22 | void resetRequest(); |
michael@0 | 23 | |
michael@0 | 24 | |
michael@0 | 25 | /** |
michael@0 | 26 | * resetReady |
michael@0 | 27 | * |
michael@0 | 28 | * This function tells the reset manager that call control is |
michael@0 | 29 | * ready for reset. This is called whenever the call control |
michael@0 | 30 | * determines that it is idle |
michael@0 | 31 | * |
michael@0 | 32 | * The resetManager will keep track of events can initate |
michael@0 | 33 | * reset when it has received ready. |
michael@0 | 34 | * |
michael@0 | 35 | */ |
michael@0 | 36 | void resetReady(); |
michael@0 | 37 | |
michael@0 | 38 | /** |
michael@0 | 39 | * resetNotReady |
michael@0 | 40 | * |
michael@0 | 41 | * This function tells the reset manager that call control is |
michael@0 | 42 | * NOT ready for reset. This is called whenever the call control |
michael@0 | 43 | * is not idle |
michael@0 | 44 | * |
michael@0 | 45 | * The resetManager will keep track of events and it CANNOT initate |
michael@0 | 46 | * reset until a resetReady event is received |
michael@0 | 47 | * |
michael@0 | 48 | */ |
michael@0 | 49 | void resetNotReady(); |
michael@0 | 50 | |
michael@0 | 51 | #endif /* _RESET_API_H_ */ |