Commit 4edcf5c2 authored by Gallacchi Mattia's avatar Gallacchi Mattia
Browse files

Port conversion

parent af9735a2
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -43,6 +43,8 @@ if __name__ == "__main__":

    args = parser.parse_args()

    print(args)

    ip = "localhost"
    port = 8080

@@ -50,7 +52,7 @@ if __name__ == "__main__":
        ip = args.ip_address

    if args.port:
        port  = args.port
        port  = int(args.port)

    srv = RsvpServerTcp(ip, port)
    srv.run()