Python Forum
How can I make this server stop listening for connections to sockets
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How can I make this server stop listening for connections to sockets
#1
I was using this tutorial online which explains a simple client-server script for python networking. The server side ran well but when I closed the client connection, I expected the server side to also close its own connection because it was running on my windows machine. How do I do this? Here is the server code.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import socket
 
#create a socket object
serversocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
 
#get local machine name
host = socket.gethostname()
port = 9999
 
#bind to the port
serversocket.bind((host, port))
 
#queue up to 5 requests
serversocket.listen(5)
 
while True :
    #establish a connection
    clientsocket, addr = serversocket.accept()
    print('Got a connection from %s' % str(addr))
 
    msg = 'Thank you for connecting'+ '\r\n'
    clientsocket.send(msg.encode('ascii'))
    clientsocket.close() #it closed the connection here and I want
    #the server to stop listening so it shuts down its own socket
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Listening on receiving Interface (using scapy) CodyTheCodeNoob 1 1,600 Dec-22-2024, 10:51 PM
Last Post: PolandoFaker
  How to make my Telegram bot stop working at 16:15 and not work on Fridays? hus73 2 1,248 Aug-10-2024, 12:06 PM
Last Post: hus73
  how to make this error stop ? Mawixy 1 13,315 Apr-19-2022, 03:02 PM
Last Post: Mawixy
  How to take the tar backup files form remote server to local server sivareddy 0 2,568 Jul-14-2021, 01:32 PM
Last Post: sivareddy
  Listening music from url ebolisa 1 2,221 Nov-25-2020, 07:53 AM
Last Post: ebolisa
  Waiting and listening test 2 2,971 Nov-13-2020, 04:43 PM
Last Post: michael1789
  Python sockets : Client sending to the server nico31780 0 3,230 May-17-2020, 07:56 PM
Last Post: nico31780
  Use Python to start/stop a server service via a webform? oakleaf2001 0 2,185 Apr-04-2020, 06:14 AM
Last Post: oakleaf2001
  Sockets confusion! MuntyScruntfundle 1 2,866 Oct-16-2018, 07:18 PM
Last Post: Larz60+
  Need small help on dynamic database connections Tirumal 4 4,317 Dec-28-2017, 07:02 PM
Last Post: buran

Forum Jump:

User Panel Messages

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