Unverified Commit 0c6fa99f authored by kladko's avatar kladko

Fixed add README toc

parent 9ee9e01b
......@@ -9,6 +9,7 @@
import sys
import os
import subprocess
import socket
assert os.path.isdir('sgx_data/sgxwallet.db')
assert os.path.isdir('sgx_data/cert_data');
......@@ -19,6 +20,20 @@ assert os.path.isfile('sgx_data/cert_data/SGXServerCert.key')
assert os.path.isfile('sgx_data/cert_data/rootCA.pem')
assert os.path.isfile('sgx_data/cert_data/rootCA.key')
s1 = socket.socket()
s2 = socket.socket()
s3 = socket.socket()
address = '127.0.0.1'
port = 80 # port number is a number, not string
s.connect((address, 1026))
s.connect((address, 1027))
s.connect((address, 1028))
s1.close()
s2.close()
s3.close()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment