(self)
| 4173 | |
| 4174 | @testFDPassPartialIntInMiddle.client_skip |
| 4175 | def _testFDPassPartialIntInMiddle(self): |
| 4176 | fd0, fd1 = self.newFDs(2) |
| 4177 | self.sendAncillaryIfPossible( |
| 4178 | MSG, |
| 4179 | [(socket.SOL_SOCKET, |
| 4180 | socket.SCM_RIGHTS, |
| 4181 | array.array("i", [fd0, self.badfd]).tobytes()[:-1]), |
| 4182 | (socket.SOL_SOCKET, |
| 4183 | socket.SCM_RIGHTS, |
| 4184 | array.array("i", [fd1]))]) |
| 4185 | |
| 4186 | def checkTruncatedHeader(self, result, ignoreflags=0): |
| 4187 | # Check that no ancillary data items are returned when data is |
nothing calls this directly
no test coverage detected