Skip to content

Commit

Permalink
rename: prefix everything in lib/ with tls_
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesm committed Oct 24, 2016
1 parent d5161da commit 14a7032
Show file tree
Hide file tree
Showing 30 changed files with 434 additions and 739 deletions.
14 changes: 7 additions & 7 deletions _tags
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ true : package(result cstruct sexplib nocrypto x509)

"lib" : include

<lib/packet.ml> : package(ppx_sexp_conv cstruct.ppx)
<lib/ciphersuite.ml> : package(ppx_sexp_conv)
<lib/config.ml> : package(ppx_sexp_conv)
<lib/core.ml> : package(ppx_sexp_conv)
<lib/engine.ml> : package(ppx_sexp_conv)
<lib/reader.ml> : package(ppx_sexp_conv)
<lib/state.ml> : package(ppx_sexp_conv)
<lib/tls_packet.ml> : package(ppx_sexp_conv cstruct.ppx)
<lib/tls_ciphersuite.ml> : package(ppx_sexp_conv)
<lib/tls_config.ml> : package(ppx_sexp_conv)
<lib/tls_core.ml> : package(ppx_sexp_conv)
<lib/tls_engine.ml> : package(ppx_sexp_conv)
<lib/tls_reader.ml> : package(ppx_sexp_conv)
<lib/tls_state.ml> : package(ppx_sexp_conv)
<lib/tls.mli> : package(ppx_sexp_conv cstruct.ppx)

<lwt/*.{ml,mli}> : package(lwt lwt.unix nocrypto.lwt)
Expand Down
130 changes: 0 additions & 130 deletions lib/config.mli

This file was deleted.

175 changes: 0 additions & 175 deletions lib/engine.mli

This file was deleted.

5 changes: 0 additions & 5 deletions lib/handshake_crypto.mli

This file was deleted.

35 changes: 0 additions & 35 deletions lib/reader.mli

This file was deleted.

16 changes: 8 additions & 8 deletions lib/tls.ml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
module Tracing = Tracing
module Tracing = Tls_tracing

module Packet = Packet
module Packet = Tls_packet

module Ciphersuite = Ciphersuite
module Ciphersuite = Tls_ciphersuite

module Core = Core
module Core = Tls_core

module Reader = Reader
module Reader = Tls_reader

module Writer = Writer
module Writer = Tls_writer

module Config = Config
module Config = Tls_config

module Engine = Engine
module Engine = Tls_engine

0 comments on commit 14a7032

Please sign in to comment.