コード例 #1
0
ファイル: __init__.py プロジェクト: NickolasLapp/wolfssl
 def _release_native_object(self):
     if getattr(self, 'native_object', _ffi.NULL) != _ffi.NULL:
         _lib.wolfSSL_CTX_free(self.native_object)
         self.native_object = _ffi.NULL
コード例 #2
0
 def _release_native_object(self):
     if getattr(self, 'native_object', _ffi.NULL) != _ffi.NULL:
         _lib.wolfSSL_CTX_free(self.native_object)
         self.native_object = _ffi.NULL
コード例 #3
0
ファイル: __init__.py プロジェクト: NickolasLapp/wolfssl
 def __del__(self):
     if getattr(self, 'native_object', _ffi.NULL) != _ffi.NULL:
         _lib.wolfSSL_CTX_free(self.native_object)
コード例 #4
0
 def __del__(self):
     if getattr(self, 'native_object', _ffi.NULL) != _ffi.NULL:
         _lib.wolfSSL_CTX_free(self.native_object)