Home | History | Annotate | Download | only in TLSProxy

Lines Matching defs:Message

10 package TLSProxy::Message;
16 #Message types
171 my $message;
183 die "CCS received before message data complete\n";
194 print " Message truncated\n";
199 #We are continuing processing a message started in a previous
201 #message
210 #We can complete the message with this record
214 $message = create_message($server, $mt, $payload,
216 push @messages, $message;
220 #This is just part of the total message
225 print " Partial message data read: ".$recoffset." bytes\n";
229 #We are at the start of a new message
232 die "End of record in the middle of a message header\n";
241 print " Message type: $message_type{$mt}\n";
242 print " Message Length: $messlen\n";
250 #We can complete the message with this record
255 $message = create_message($server, $mt, $payload,
257 push @messages, $message;
261 #This is just part of the total message
306 my $message;
311 $message = TLSProxy::ClientHello->new(
318 $message->parse();
320 $message = TLSProxy::ServerHello->new(
327 $message->parse();
329 $message = TLSProxy::EncryptedExtensions->new(
336 $message->parse();
338 $message = TLSProxy::Certificate->new(
345 $message->parse();
347 $message = TLSProxy::CertificateRequest->new(
354 $message->parse();
356 $message = TLSProxy::CertificateVerify->new(
363 $message->parse();
365 $message = TLSProxy::ServerKeyExchange->new(
372 $message->parse();
374 $message = TLSProxy::NewSessionTicket->new(
381 $message->parse();
383 #Unknown message type
384 $message = TLSProxy::Message->new(
394 return $message;
450 #Update all the underlying records with the modified data from this message
469 #The message is fully contained within one record
476 # the message wasn't present. The first fragment length doesn't include
532 #Note we don't currently support changing a fragmented message length