Overview
Comment: | Fix type mismatch with GCC |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
8d32ca35ce9323c16d6888b8de86e918 |
User & Date: | js on 2020-04-05 23:10:19 |
Other Links: | manifest | tags |
Context
2020-05-06
| ||
00:37 | Adjust to ObjFW changes check-in: 944f3dbb18 user: js tags: trunk | |
2020-04-05
| ||
23:10 | Fix type mismatch with GCC check-in: 8d32ca35ce user: js tags: trunk | |
2019-10-03
| ||
23:35 | Suppress broken documentation warnings in OpenSSL check-in: 56c34998de user: js tags: trunk | |
Changes
Modified configure.ac from [660cbad068] to [ebd3cbd325].
|
| | | 1 2 3 4 5 6 7 8 | AC_INIT(ObjOpenSSL, 0.1, js@nil.im) AC_CONFIG_SRCDIR(src) AC_CONFIG_AUX_DIR(build-aux) AC_CONFIG_MACRO_DIR(build-aux/m4) AC_CHECK_TOOL(OBJFW_CONFIG, objfw-config) AS_IF([test x"$OBJFW_CONFIG" = x""], [ |
︙ | ︙ |
Modified src/ObjOpenSSL.h from [25e0dc9838] to [1ca8beb117].
1 | /* | | | | 1 2 3 4 5 6 7 8 9 10 11 | /* * Copyright (c) 2011, Jonathan Schleifer <js@nil.im> * * https://git.nil.im/objopenssl.git * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice is present in all copies. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
︙ | ︙ |
Modified src/SSLConnectionFailedException.h from [52f2c04dd6] to [9307f3c152].
1 | /* | | | | 1 2 3 4 5 6 7 8 9 10 11 | /* * Copyright (c) 2016, Jonathan Schleifer <js@nil.im> * * https://git.nil.im/objopenssl.git * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice is present in all copies. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
︙ | ︙ |
Modified src/SSLConnectionFailedException.m from [10c93bcda0] to [811f3b429f].
1 | /* | | | | 1 2 3 4 5 6 7 8 9 10 11 | /* * Copyright (c) 2016, Jonathan Schleifer <js@nil.im> * * https://git.nil.im/objopenssl.git * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice is present in all copies. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
︙ | ︙ |
Modified src/SSLInvalidCertificateException.h from [12457e0743] to [827b0e3822].
1 2 | /* * Copyright (c) 2011, Florian Zeitz <florob@babelmonkeys.de> | | | | 1 2 3 4 5 6 7 8 9 10 11 12 | /* * Copyright (c) 2011, Florian Zeitz <florob@babelmonkeys.de> * Copyright (c) 2013, Jonathan Schleifer <js@nil.im> * * https://git.nil.im/objopenssl.git * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice is present in all copies. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
︙ | ︙ |
Modified src/SSLInvalidCertificateException.m from [8b98c5bd7a] to [0cf548effa].
1 2 | /* * Copyright (c) 2011, Florian Zeitz <florob@babelmonkeys.de> | | | | 1 2 3 4 5 6 7 8 9 10 11 12 | /* * Copyright (c) 2011, Florian Zeitz <florob@babelmonkeys.de> * Copyright (c) 2012, 2013, 2016, Jonathan Schleifer <js@nil.im> * * https://git.nil.im/objopenssl.git * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice is present in all copies. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
︙ | ︙ |
Modified src/SSLSocket.h from [0d0d96cac9] to [b1fffa112d].
1 | /* | | | | 1 2 3 4 5 6 7 8 9 10 11 12 | /* * Copyright (c) 2011, 2013, 2015, Jonathan Schleifer <js@nil.im> * Copyright (c) 2011, Florian Zeitz <florob@babelmonkeys.de> * * https://git.nil.im/objopenssl.git * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice is present in all copies. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
︙ | ︙ |
Modified src/SSLSocket.m from [eb0bb64dd8] to [4db12c8daa].
1 | /* | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | /* * Copyright (c) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 * Jonathan Schleifer <js@nil.im> * Copyright (c) 2011, Florian Zeitz <florob@babelmonkeys.de> * Copyright (c) 2011, Jos Kuijpers <jos@kuijpersvof.nl> * * https://git.nil.im/objopenssl.git * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice is present in all copies. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
︙ | ︙ | |||
140 141 142 143 144 145 146 | [_socket release]; [_delegate release]; [super dealloc]; } | | | | | 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 | [_socket release]; [_delegate release]; [super dealloc]; } - (void)socket: (OFTCPSocket *)sock didConnectToHost: (OFString *)host port: (uint16_t)port exception: (id)exception { if (exception == nil) { @try { [(SSLSocket *)sock SSL_startTLSWithExpectedHost: _host port: _port]; } @catch (id e) { exception = e; } } _socket.delegate = _delegate; [_delegate socket: sock |
︙ | ︙ |
Modified src/X509Certificate.h from [9035c49839] to [1ffccd575a].
1 2 | /* * Copyright (c) 2011, Florian Zeitz <florob@babelmonkeys.de> | | | | 1 2 3 4 5 6 7 8 9 10 11 12 | /* * Copyright (c) 2011, Florian Zeitz <florob@babelmonkeys.de> * Copyright (c) 2013, 2016, Jonathan Schleifer <js@nil.im> * * https://git.nil.im/objopenssl.git * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice is present in all copies. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
︙ | ︙ |
Modified src/X509Certificate.m from [fc4aee8bfa] to [1768751905].
1 2 | /* * Copyright (c) 2011, Florian Zeitz <florob@babelmonkeys.de> | | | | 1 2 3 4 5 6 7 8 9 10 11 12 | /* * Copyright (c) 2011, Florian Zeitz <florob@babelmonkeys.de> * Copyright (c) 2011, 2012, 2013, 2015, Jonathan Schleifer <js@nil.im> * * https://git.nil.im/objopenssl.git * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice is present in all copies. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
︙ | ︙ |