clientflags => "",
serverconnects => 1,
serverpid => 0,
+ clientpid => 0,
reneg => 0,
sessionfile => undef,
$self->{message_list} = [];
$self->{clientflags} = "";
$self->{sessionfile} = undef;
+ $self->{clientpid} = 0;
$is_tls13 = 0;
$ciphersuite = undef;
}
exec($execcmd);
}
+ $self->clientpid($pid);
}
# Wait for incoming connection from client
waitpid( $self->serverpid, 0);
die "exit code $? from server process\n" if $? != 0;
}
+ die "clientpid is zero\n" if $self->clientpid == 0;
+ print "Waiting for client process to close: ".$self->clientpid."\n";
+ waitpid($self->clientpid, 0);
+
return 1;
}
}
return $self->{serverpid};
}
+sub clientpid
+{
+ my $self = shift;
+ if (@_) {
+ $self->{clientpid} = shift;
+ }
+ return $self->{clientpid};
+}
sub fill_known_data
{