Python Forum
asyncio byte data transfer
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
asyncio byte data transfer
#6
each client that connects to be served will have its own separate instance that serves that one client. in order to do things like having a chat between clients, the these server instances will need to be re-designed so that they can do a message exchange. there are many schemes to do that. but. one thing all of them will have is some means to identify each client. you will want to make that be secure which means all communication with clients will be encrypted (use TLS) and clients will login with a password or asymmetric encryption key. then each server code instance will know the user name for who they are serving. and you will need to choose the way you will have it do message exchange (how to no only send a message between instances but also send it to the correct instance). how many instances do you think will be running at one time?
Tradition is peer pressure from dead people

What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Reply


Messages In This Thread
asyncio byte data transfer - by gary - Nov-05-2022, 03:01 PM
RE: asyncio byte data transfer - by Gribouillis - Nov-05-2022, 08:44 PM
RE: asyncio byte data transfer - by gary - Nov-06-2022, 04:35 AM
RE: asyncio byte data transfer - by Gribouillis - Nov-06-2022, 09:46 AM
RE: asyncio byte data transfer - by gary - Nov-08-2022, 09:00 AM
RE: asyncio byte data transfer - by Skaperen - Nov-18-2022, 02:45 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Python:How to read a recived message that idinfies the client Byte by Byte using UDP learn 2 6,118 Dec-01-2017, 09:47 AM
Last Post: wavic

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020