最近在研究QUIC协议,尝试了一些QUIC相关的开源项目,主要是c,c++,go等语言编写的。这里记录下我折腾ngtcp2的过程。
基本思路就是参照github上该项目的README来进行就可以了。由于是Ubuntu 16.04,很多依赖基本上都满足了,比如gcc版本是5.4.0。QUIC依赖的TLS 1.3是安装在openssl的源码目录下面,没有安装到系统库中,这一点使用时比较方便。
git clone --depth 1 https://github.com/openssl/openssl
cd openssl
./config enable-tls1_3 --prefix=$PWD/build
make -j$(nproc)
git clone https://github.com/ngtcp2/ngtcp2
cd ngtcp2
autoreconf -i
cd examples
openssl genrsa -out server.key 2048
openssl req -new -x509 -key server.key -out server.crt -days 3650
打开两个终端,分别开启client和server
./client 127.0.0.1 4433 -i
原文链接:https://www.f2er.com/ubuntu/349847.html基本思路就是参照github上该项目的README来进行就可以了。由于是Ubuntu 16.04,很多依赖基本上都满足了,比如gcc版本是5.4.0。QUIC依赖的TLS 1.3是安装在openssl的源码目录下面,没有安装到系统库中,这一点使用时比较方便。
git clone --depth 1 https://github.com/openssl/openssl
cd openssl
./config enable-tls1_3 --prefix=$PWD/build
make -j$(nproc)
make install_sw
git clone https://github.com/ngtcp2/ngtcp2
cd ngtcp2
autoreconf -i
./configure PKG_CONFIG_PATH=$PWD/../openssl/build/lib/pkgconfig LDFLAGS="-Wl,-rpath,$PWD/../openssl/build/lib"
cd examples
openssl genrsa -out server.key 2048
openssl req -new -x509 -key server.key -out server.crt -days 3650
打开两个终端,分别开启client和server
./client 127.0.0.1 4433 -i
./server 127.0.0.1 4433 server.key server.crt
所有操作过程和项目README上的完全相同。