Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

go-tlsdialer: initial repository setup #1

Merged
merged 3 commits into from
Feb 8, 2024

Commits on Feb 4, 2024

  1. ci: setup ci workflow

    In this commit the ci workflow is created for the repository.
    DerekBum committed Feb 4, 2024
    Configuration menu
    Copy the full SHA
    e141d1d View commit details
    Browse the repository at this point in the history
  2. docs: create a README file

    In thes commit `README.md` and `CHANGELOG.md` files are created.
    `README` shows the purpose of this repository.
    DerekBum committed Feb 4, 2024
    Configuration menu
    Copy the full SHA
    24f76a6 View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2024

  1. api: add OpenSSLDialer implementation

    To disable SSL by default we want to transfer OpenSSLDialer
    and any other SSL logic to the new go-tlsdialer repository.
    
    go-tlsdialer serves as an interlayer between go-tarantool and
    go-openssl. All SSL logic from go-tarantool is moved to the
    go-tlsdialer.
    
    go-tlsdialer still uses tarantool connection, but also
    types and methods from go-openssl. This way we are
    removing the direct go-openssl dependency from go-tarantool,
    without creating a tarantool dependency in go-openssl.
    
    Moved all SSL code from go-tarantool, some test helpers.
    
    Part of tarantool/go-tarantool#301
    DerekBum committed Feb 7, 2024
    Configuration menu
    Copy the full SHA
    4c19642 View commit details
    Browse the repository at this point in the history