| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is PRIVATE to SSL and should be the first thing included by | 2 * This file is PRIVATE to SSL and should be the first thing included by |
| 3 * any SSL implementation file. | 3 * any SSL implementation file. |
| 4 * | 4 * |
| 5 * ***** BEGIN LICENSE BLOCK ***** | 5 * ***** BEGIN LICENSE BLOCK ***** |
| 6 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 | 6 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 |
| 7 * | 7 * |
| 8 * The contents of this file are subject to the Mozilla Public License Version | 8 * The contents of this file are subject to the Mozilla Public License Version |
| 9 * 1.1 (the "License"); you may not use this file except in compliance with | 9 * 1.1 (the "License"); you may not use this file except in compliance with |
| 10 * the License. You may obtain a copy of the License at | 10 * the License. You may obtain a copy of the License at |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 * in which case the provisions of the GPL or the LGPL are applicable instead | 32 * in which case the provisions of the GPL or the LGPL are applicable instead |
| 33 * of those above. If you wish to allow use of your version of this file only | 33 * of those above. If you wish to allow use of your version of this file only |
| 34 * under the terms of either the GPL or the LGPL, and not to allow others to | 34 * under the terms of either the GPL or the LGPL, and not to allow others to |
| 35 * use your version of this file under the terms of the MPL, indicate your | 35 * use your version of this file under the terms of the MPL, indicate your |
| 36 * decision by deleting the provisions above and replace them with the notice | 36 * decision by deleting the provisions above and replace them with the notice |
| 37 * and other provisions required by the GPL or the LGPL. If you do not delete | 37 * and other provisions required by the GPL or the LGPL. If you do not delete |
| 38 * the provisions above, a recipient may use your version of this file under | 38 * the provisions above, a recipient may use your version of this file under |
| 39 * the terms of any one of the MPL, the GPL or the LGPL. | 39 * the terms of any one of the MPL, the GPL or the LGPL. |
| 40 * | 40 * |
| 41 * ***** END LICENSE BLOCK ***** */ | 41 * ***** END LICENSE BLOCK ***** */ |
| 42 /* $Id: sslimpl.h,v 1.77 2010/02/10 00:33:50 wtc%google.com Exp $ */ | 42 /* $Id: sslimpl.h,v 1.77.2.1 2010/07/31 04:33:52 wtc%google.com Exp $ */ |
| 43 | 43 |
| 44 #ifndef __sslimpl_h_ | 44 #ifndef __sslimpl_h_ |
| 45 #define __sslimpl_h_ | 45 #define __sslimpl_h_ |
| 46 | 46 |
| 47 #ifdef DEBUG | 47 #ifdef DEBUG |
| 48 #undef NDEBUG | 48 #undef NDEBUG |
| 49 #else | 49 #else |
| 50 #undef NDEBUG | 50 #undef NDEBUG |
| 51 #define NDEBUG | 51 #define NDEBUG |
| 52 #endif | 52 #endif |
| (...skipping 1732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1785 #elif defined(_WIN32_WCE) | 1785 #elif defined(_WIN32_WCE) |
| 1786 #define SSL_GETPID GetCurrentProcessId | 1786 #define SSL_GETPID GetCurrentProcessId |
| 1787 #elif defined(WIN32) | 1787 #elif defined(WIN32) |
| 1788 extern int __cdecl _getpid(void); | 1788 extern int __cdecl _getpid(void); |
| 1789 #define SSL_GETPID _getpid | 1789 #define SSL_GETPID _getpid |
| 1790 #else | 1790 #else |
| 1791 #define SSL_GETPID() 0 | 1791 #define SSL_GETPID() 0 |
| 1792 #endif | 1792 #endif |
| 1793 | 1793 |
| 1794 #endif /* __sslimpl_h_ */ | 1794 #endif /* __sslimpl_h_ */ |
| OLD | NEW |