1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
//! [`BearerAuthConfig`] — per-consumer perimeter configuration
//! (cookie source + clearance closure + pre-auth path exemptions).
use Arc;
use CookieJar;
/// Per-consumer perimeter configuration carried into
/// [`super::BearerAuthLayer`].
///
/// Everything the perimeter needs that is *consumer-specific*:
/// - the fallback bearer cookie name ([`Self::access_cookie_name`]),
/// - the dead-session cookie-clearance closure ([`Self::on_clear`]),
/// - the pre-auth path allowlist ([`Self::path_exempt`]).
///
/// The Layer uses [`Self::access_cookie_name`] as the fallback bearer
/// source (when `Authorization` is absent) and the [`Self::on_clear`]
/// closure to mint Set-Cookie removals on dead-session 401s. Cookie
/// names are domain-scoped per RFC 6265bis; each consumer owns its
/// `__Host-*_at` literal in its own `cookies` module.