(self)
| 98 | return True |
| 99 | |
| 100 | def set_connection_fully_established(self): |
| 101 | if not self.isOutbound and not self.local: |
| 102 | shared.clientHasReceivedIncomingConnections = True |
| 103 | UISignalQueue.put(('setStatusIcon', 'green')) |
| 104 | UISignalQueue.put(('updateNetworkStatusTab', (self.isOutbound, True, self.destination))) |
| 105 | self.antiIntersectionDelay(True) |
| 106 | self.fullyEstablished = True |
| 107 | if self.isOutbound: |
| 108 | knownnodes.increaseRating(self.destination) |
| 109 | if self.isOutbound: |
| 110 | Dandelion().maybeAddStem(self) |
| 111 | self.sendAddr() |
| 112 | self.sendBigInv() |
| 113 | |
| 114 | def sendAddr(self): |
| 115 | # We are going to share a maximum number of 1000 addrs (per overlapping |
no test coverage detected