We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db4ebfb commit bf5009bCopy full SHA for bf5009b
2 files changed
wrapper/Ada/tls_client.adb
@@ -204,8 +204,8 @@ package body Tls_Client with SPARK_Mode is
204
Output : WolfSSL.Write_Result;
205
206
Result : WolfSSL.Subprogram_Result;
207
- DTLS : Boolean;
208
- PSK : Boolean;
+ DTLS : Boolean := False;
+ PSK : Boolean := False;
209
begin
210
Result := WolfSSL.Initialize;
211
if Result /= Success then
wrapper/Ada/tls_server.adb
@@ -162,7 +162,7 @@ package body Tls_Server with SPARK_Mode is
162
Ch : Character;
163
164
165
- DTLS, PSK : Boolean;
+ DTLS, PSK : Boolean := True;
166
Shall_Continue : Boolean := True;
167
168
Input : WolfSSL.Read_Result;
0 commit comments