D | csocket.py | 204 def Bind(s, to): argument 206 ret = libc.bind(s.fileno(), VoidPointer(to), len(to)) 211 def Connect(s, to): argument 213 ret = libc.connect(s.fileno(), VoidPointer(to), len(to)) 218 def Sendmsg(s, to, data, control, flags): argument 239 if to: 240 if isinstance(to, tuple): 241 to = Sockaddr(to) 242 msg_name = to.CPointer() 243 msg_namelen = len(to)
|