resources/code/my-first-enclave/cryptographic-attestation/traffic_forwarder.py [40:46]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        string = source.recv(1024)
        if string:

            destination.sendall(string)
        else:
            source.shutdown(socket.SHUT_RD)
            destination.shutdown(socket.SHUT_WR)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



resources/code/my-first-enclave/secure-local-channel/traffic_forwarder.py [41:46]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            string = source.recv(1024)
            if string:
                destination.sendall(string)
            else:
                source.shutdown(socket.SHUT_RD)
                destination.shutdown(socket.SHUT_WR)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



