Index: configure.ac ================================================================== --- configure.ac +++ configure.ac @@ -1,6 +1,6 @@ -AC_INIT(ObjOpenSSL, 0.1, js@heap.zone) +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) Index: src/ObjOpenSSL.h ================================================================== --- src/ObjOpenSSL.h +++ src/ObjOpenSSL.h @@ -1,9 +1,9 @@ /* - * Copyright (c) 2011, Jonathan Schleifer + * Copyright (c) 2011, Jonathan Schleifer * - * https://heap.zone/git/objopenssl.git + * 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. * Index: src/SSLConnectionFailedException.h ================================================================== --- src/SSLConnectionFailedException.h +++ src/SSLConnectionFailedException.h @@ -1,9 +1,9 @@ /* - * Copyright (c) 2016, Jonathan Schleifer + * Copyright (c) 2016, Jonathan Schleifer * - * https://heap.zone/git/objopenssl.git + * 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. * Index: src/SSLConnectionFailedException.m ================================================================== --- src/SSLConnectionFailedException.m +++ src/SSLConnectionFailedException.m @@ -1,9 +1,9 @@ /* - * Copyright (c) 2016, Jonathan Schleifer + * Copyright (c) 2016, Jonathan Schleifer * - * https://heap.zone/git/objopenssl.git + * 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. * Index: src/SSLInvalidCertificateException.h ================================================================== --- src/SSLInvalidCertificateException.h +++ src/SSLInvalidCertificateException.h @@ -1,10 +1,10 @@ /* * Copyright (c) 2011, Florian Zeitz - * Copyright (c) 2013, Jonathan Schleifer + * Copyright (c) 2013, Jonathan Schleifer * - * https://heap.zone/git/objopenssl.git + * 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. * Index: src/SSLInvalidCertificateException.m ================================================================== --- src/SSLInvalidCertificateException.m +++ src/SSLInvalidCertificateException.m @@ -1,10 +1,10 @@ /* * Copyright (c) 2011, Florian Zeitz - * Copyright (c) 2012, 2013, 2016, Jonathan Schleifer + * Copyright (c) 2012, 2013, 2016, Jonathan Schleifer * - * https://heap.zone/git/objopenssl.git + * 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. * Index: src/SSLSocket.h ================================================================== --- src/SSLSocket.h +++ src/SSLSocket.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2011, 2013, 2015, Jonathan Schleifer + * Copyright (c) 2011, 2013, 2015, Jonathan Schleifer * Copyright (c) 2011, Florian Zeitz * - * https://heap.zone/git/objopenssl.git + * 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. * Index: src/SSLSocket.m ================================================================== --- src/SSLSocket.m +++ src/SSLSocket.m @@ -1,12 +1,12 @@ /* - * Copyright (c) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 - * Jonathan Schleifer + * Copyright (c) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 + * Jonathan Schleifer * Copyright (c) 2011, Florian Zeitz * Copyright (c) 2011, Jos Kuijpers * - * https://heap.zone/git/objopenssl.git + * 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. * @@ -142,19 +142,19 @@ [_delegate release]; [super dealloc]; } -- (void)socket: (OF_KINDOF(OFTCPSocket *))sock +- (void)socket: (OFTCPSocket *)sock didConnectToHost: (OFString *)host port: (uint16_t)port exception: (id)exception { if (exception == nil) { @try { - [sock SSL_startTLSWithExpectedHost: _host - port: _port]; + [(SSLSocket *)sock SSL_startTLSWithExpectedHost: _host + port: _port]; } @catch (id e) { exception = e; } } Index: src/X509Certificate.h ================================================================== --- src/X509Certificate.h +++ src/X509Certificate.h @@ -1,10 +1,10 @@ /* * Copyright (c) 2011, Florian Zeitz - * Copyright (c) 2013, 2016, Jonathan Schleifer + * Copyright (c) 2013, 2016, Jonathan Schleifer * - * https://heap.zone/git/objopenssl.git + * 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. * Index: src/X509Certificate.m ================================================================== --- src/X509Certificate.m +++ src/X509Certificate.m @@ -1,10 +1,10 @@ /* * Copyright (c) 2011, Florian Zeitz - * Copyright (c) 2011, 2012, 2013, 2015, Jonathan Schleifer + * Copyright (c) 2011, 2012, 2013, 2015, Jonathan Schleifer * - * https://heap.zone/git/objopenssl.git + * 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. *