Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #83500
| From | Kev Dwyer <kevin.p.dwyer@gmail.com> |
|---|---|
| Subject | Re: OSError: [WinError 10022] An invalid argument was supplied in udp python file |
| Date | 2015-01-10 11:43 +0000 |
| References | <CA+YdQ_54x4w_GUWw6_YLwX9Mb_CgoR8VQ0E1N3oE=r-QVaiv0A@mail.gmail.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.17563.1420890228.18130.python-list@python.org> (permalink) |
contro opinion wrote:
> When i test an udp.py file on server and client in python34.
>
>
> #!/usr/bin/env python
> import socket, sys
> s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
> MAX = 65535
> PORT = 1060
> if sys.argv[1:] == ['server']:
> s.bind(('127.0.0.1', PORT))
> print('Listening at', s.getsockname())
> while True:
> data, address = s.recvfrom(MAX)
> print('The client at', address, 'says', repr(data))
> s.sendto('Your data was %d bytes' % len(data), address)
> elif sys.argv[1:] == ['client']:
> print('Address before sending:',s.getsockname())
> s.sendto('This is my message',('127.0.0.1', PORT))
> print('Address after sending',s.getsockname())
> data, address = s.recvfrom(MAX)
> print('The server', address, 'says', repr(data))
> else:
> print('usage: udp_local.py server|client')
>
>
> The command `python udp.py server` get output:
> Listening at ('127.0.0.1', 1060)
>
> Why `python udp.py client` run failure:
>
> Traceback (most recent call last):
> File "d://udp.py", line 15, in <module>
> print('Address before sending:', s.getsockname())
> OSError: [WinError 10022] An invalid argument was supplied
Hello,
According to http://stackoverflow.com/questions/15638214/socket-error-invalid-argument-supplied, the client socket doesn't have an address at time
when you call s.getsocketname. This raises an exception on Windows.
Removing the 'Address before sending' line will prevent the error.
As you're using Python3, you'll find that passing strings to s.sendto raises
a TypeError; you'll need to encode the strings as bytes.
Hope that helps,
Kev
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: OSError: [WinError 10022] An invalid argument was supplied in udp python file Kev Dwyer <kevin.p.dwyer@gmail.com> - 2015-01-10 11:43 +0000
csiph-web