Make the protocol receive a frame.
(self, frame)
| 139 | ) |
| 140 | |
| 141 | def receive_frame(self, frame): |
| 142 | """ |
| 143 | Make the protocol receive a frame. |
| 144 | |
| 145 | """ |
| 146 | write = self.protocol.data_received |
| 147 | mask = not self.protocol.is_client |
| 148 | frame.write(write, mask=mask) |
| 149 | |
| 150 | def receive_eof(self): |
| 151 | """ |
no test coverage detected