1 | # Copyright 2024 The OpenSSL Project Authors. All Rights Reserved.
|
---|
2 | #
|
---|
3 | # Licensed under the Apache License 2.0 (the "License"). You may not use
|
---|
4 | # this file except in compliance with the License. You can obtain a copy
|
---|
5 | # in the file LICENSE in the source distribution or at
|
---|
6 | # https://www.openssl.org/source/license.html
|
---|
7 |
|
---|
8 | use strict;
|
---|
9 |
|
---|
10 | package TLSProxy::NextProto;
|
---|
11 |
|
---|
12 | use vars '@ISA';
|
---|
13 | push @ISA, 'TLSProxy::Message';
|
---|
14 |
|
---|
15 | sub new
|
---|
16 | {
|
---|
17 | my $class = shift;
|
---|
18 | my ($isdtls,
|
---|
19 | $server,
|
---|
20 | $msgseq,
|
---|
21 | $msgfrag,
|
---|
22 | $msgfragoffs,
|
---|
23 | $data,
|
---|
24 | $records,
|
---|
25 | $startoffset,
|
---|
26 | $message_frag_lens) = @_;
|
---|
27 |
|
---|
28 | my $self = $class->SUPER::new(
|
---|
29 | $isdtls,
|
---|
30 | $server,
|
---|
31 | TLSProxy::Message::MT_NEXT_PROTO,
|
---|
32 | $msgseq,
|
---|
33 | $msgfrag,
|
---|
34 | $msgfragoffs,
|
---|
35 | $data,
|
---|
36 | $records,
|
---|
37 | $startoffset,
|
---|
38 | $message_frag_lens);
|
---|
39 |
|
---|
40 | return $self;
|
---|
41 | }
|
---|
42 |
|
---|
43 | sub parse
|
---|
44 | {
|
---|
45 | # We don't support parsing at the moment
|
---|
46 | }
|
---|
47 |
|
---|
48 | # This is supposed to reconstruct the on-the-wire message data following changes.
|
---|
49 | # For now though since we don't support parsing we just create an empty NextProto
|
---|
50 | # message - this capability is used in test_npn
|
---|
51 | sub set_message_contents
|
---|
52 | {
|
---|
53 | my $self = shift;
|
---|
54 | my $data;
|
---|
55 |
|
---|
56 | $data = pack("C32", 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
---|
57 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
---|
58 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
---|
59 | 0x00, 0x00, 0x00);
|
---|
60 | $self->data($data);
|
---|
61 | }
|
---|
62 | 1;
|
---|