Differences From Artifact [482ed92e1f]:
- File
src/SSLSocket.h
— part of check-in
[ecf34717f0]
at
2017-07-22 23:34:45
on branch trunk
— SSLSocket: Re-add verifyPeerCertificate
This was accidentally removed from the interface. (user: js, size: 1969) [annotate] [blame] [check-ins using] [more...]
To Artifact [0d0d96cac9]:
- File src/SSLSocket.h — part of check-in [56c34998de] at 2019-10-03 23:35:03 on branch trunk — Suppress broken documentation warnings in OpenSSL (user: js, size: 2130) [annotate] [blame] [check-ins using]
︙ | |||
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | + + + + + + + | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #ifdef __clang__ # pragma clang diagnostic push # pragma clang diagnostic ignored "-Wdocumentation" #endif #include <openssl/ssl.h> #ifdef __clang__ # pragma clang diagnostic pop #endif #import <ObjFW/OFTCPSocket.h> #import <ObjFW/OFTLSSocket.h> OF_ASSUME_NONNULL_BEGIN @class X509Certificate; |
︙ |