socket tag

57 questions


1 answers
67 views
0
How to run independent functions on the mfc server

Hi, how are you?The mfc server is currently conducting socket communication When you load db through the db lookup function installed in the server, When a large amount of db is loaded, the process it...

2 years ago

1 answers
92 views
0
How to transfer Python wav files

Trying to send wav file socket to Python (tcp)It's not working.How should I send it?

2 years ago

1 answers
87 views
0
Receiving Android Socket Server Files

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...

2 years ago

1 answers
99 views
0
I'm trying to create a message program that works without a server, but I'm looking for information that I can use as a reference.

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...

2 years ago

1 answers
122 views
0
Network (programming) Study book questions

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...

2 years ago

1 answers
82 views
0
I have a question about Socket (Coding X, Concept related question)

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,...

2 years ago

1 answers
110 views
0
Python socket communication and mysql communication questions

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() ...


1 answers
91 views
0
Questions about Python Socket Communication.

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...

2 years ago

1 answers
106 views
0
java single server - Spraying words to all clients in multi client socket communication.

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...

2 years ago

1 answers
126 views
0
[Network Programming] Is it possible to check the string sent by the client on the server?

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.