summaryrefslogtreecommitdiffstats
path: root/openpgp/src/packet/header
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-01-06 16:11:54 +0100
committerJustus Winter <justus@sequoia-pgp.org>2020-01-06 16:11:54 +0100
commitc99f7bbc3d59faa243af8f816496e78dada2c962 (patch)
tree6034923c06ee467d36598b5432d223e6bda513b1 /openpgp/src/packet/header
parente00557d1a2885f28105470ddd25df1931ad3a1e5 (diff)
openpgp: Move packet::header::ctb::* into header.
Diffstat (limited to 'openpgp/src/packet/header')
-rw-r--r--openpgp/src/packet/header/mod.rs9
1 files changed, 7 insertions, 2 deletions
diff --git a/openpgp/src/packet/header/mod.rs b/openpgp/src/packet/header/mod.rs
index c799959a..6144f03c 100644
--- a/openpgp/src/packet/header/mod.rs
+++ b/openpgp/src/packet/header/mod.rs
@@ -5,8 +5,13 @@ use crate::{
Result,
};
use crate::packet::tag::Tag;
-pub mod ctb;
-pub use self::ctb::CTB;
+mod ctb;
+pub use self::ctb::{
+ CTB,
+ CTBOld,
+ CTBNew,
+ PacketLengthType,
+};
/// An OpenPGP packet's header.
#[derive(Clone, Debug)]