57 questions
Trying to send wav file socket to Python (tcp)It's not working.How should I send it?
I am making an app that reads mp3 files or wav files on the embedded board and sends them to my smartphone through tcp In c, the following is struct filestate{char state[5];int size;char data[500]};It...
I have a question because there is only client <-> server information on Google.I'm trying to create a message program that works without a server, but I don't know how to do itI'm not getting m...
I was recommended a good book when studying tcp/ip socket and network programmingThe books areThis is.What are the advantages and disadvantages of each book in studying for beginners?Also, in the case...
Hello!I think I often post questions while studying various concepts recently.(I think I'm posting too much, and I'm sorry, so if I post it on Facebook's life coding group, it's hard to find it later,...
import socketimport jsonimport pymysqlHOST = ''PORT = i = 0list_data =[]s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)s.bind((HOST, PORT))s.listen(1)while True : try : conn,addr = s.accept() ...
Hello, I am currently studying Python.I'm studying Socket Communication Program Maybe because I'm not used to it yet, I don't understand well even if I take this and that from various blogs and open i...
HelloI'm making a chat with you.The code you've written so far has multiple clients connecting to one server, but it doesn't show anyone what one person wrote.If the client receives the while statemen...
retval=recv(clnt_socks[job1],buf,BUFSIZE,0);// // buf[retval]='\0';if (strcmp(answer, buf) == 0) { for (i = 0; i < clnt_cnt; i++) { //... }}else { for (i = 0; i < clnt_cnt; i++) { //... }}The ...
« | - 5 - | » |
© 2024 OneMinuteCode. All rights reserved.