File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -304,7 +304,7 @@ impl FastlyHttpReq for Session {
304
304
ja4_max_len : u32 ,
305
305
nwritten_out : GuestPtr < u32 > ,
306
306
) -> Result < ( ) , Error > {
307
- Err ( Error :: NotAvailable ( "Client TLS JA4 hash" ) )
307
+ Err ( Error :: ValueAbsent )
308
308
}
309
309
310
310
fn downstream_compliance_region (
Original file line number Diff line number Diff line change @@ -33,6 +33,8 @@ fn main() {
33
33
assert_eq ! ( client_req. get_tls_client_hello( ) , None ) ;
34
34
assert_eq ! ( client_req. get_tls_protocol( ) , None ) ;
35
35
assert_eq ! ( client_req. get_tls_protocol_bytes( ) , None ) ;
36
+ assert_eq ! ( client_req. get_tls_ja3_md5( ) , None ) ;
37
+ assert_eq ! ( client_req. get_tls_ja4( ) , None ) ;
36
38
// NOTE: This currently fails, waiting on a patch to land in the fastly crate
37
39
// assert_eq!(client_req.get_tls_raw_client_certificate(), None);
38
40
assert_eq ! ( client_req. get_tls_raw_client_certificate_bytes( ) , None ) ;
You can’t perform that action at this time.
0 commit comments