5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-11-09 23:20:28 +00:00

add one TODO comment and run gofmt

This commit is contained in:
Arceliar 2019-10-23 20:28:11 -05:00
parent cd77727c1e
commit 996c6b4f47

View File

@ -38,6 +38,7 @@ func (t *tcptls) init(tcp *tcp) {
certBuf := &bytes.Buffer{}
// TODO: because NotAfter is finite, we should add some mechanism to regenerate the certificate and restart the listeners periodically for nodes with very high uptimes. Perhaps regenerate certs and restart listeners every few months or so.
pubtemp := x509.Certificate{
SerialNumber: big.NewInt(1),
Subject: pkix.Name{
@ -65,7 +66,7 @@ func (t *tcptls) init(tcp *tcp) {
t.config = &tls.Config{
RootCAs: cpool,
Certificates: []tls.Certificate{
tls.Certificate{
{
Certificate: [][]byte{derbytes},
PrivateKey: edpriv,
},