(self)
| 196 | self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) |
| 197 | |
| 198 | def connect(self): |
| 199 | # Overrides connect method from parent class to avoid automatic |
| 200 | # opening of connection. |
| 201 | pass |
| 202 | |
| 203 | def create_link(self, id, lock_device, lock_timeout, name): |
| 204 | params = (id, lock_device, lock_timeout, name) |