Narayanaperumal

Results 2 comments of Narayanaperumal

Through ws_connection I am able to access the getpeercert in WebSocketHandler. ```python class WSHandler(websocket.WebSocketHandler): def open(self): peer_cert = self.ws_connection.stream.socket.getpeercert() print(peer_cert) ```