Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error 10038 #3

Open
Null1408 opened this issue Feb 28, 2018 · 2 comments
Open

Error 10038 #3

Null1408 opened this issue Feb 28, 2018 · 2 comments

Comments

@Null1408
Copy link

Null1408 commented Feb 28, 2018

i run this in linux and it runs perfect
but in windows 7 it doesnt work and gived me scoket error 10038
how can i fix this?

@m9aabkk
Copy link

m9aabkk commented Mar 13, 2018

Are you sure u translated all linux codes to windows? while 1:
socket_list = [sys.stdin, s]
read_sockets, write_sockets, error_sockets = select.select(socket_list , [], []) this is linux code

Try
while 1:
Socket_list = [socket.socket(), s]
Read_sockets, write_sockets, error_sockets = select.socket(socket_list , [], [])

@m9aabkk
Copy link

m9aabkk commented Mar 13, 2018

Once you have translated everyhing it should have no errors showing but u might run into isue that im having :(

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants