Skip to content

Commit

Permalink
Update client.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kassam-99 authored Dec 27, 2023
1 parent 69613bf commit bb4ef47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


ip = input("[*] Enter IP of server: ")
port = input("[*] Enter port of server: ")
port = int(input("[*] Enter port of server: "))
client = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
client.connect((ip, port))

Expand Down

0 comments on commit bb4ef47

Please sign in to comment.