python/awsgs.py [155:163]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    except Exception as e:
        print(" (ERR) File open error: %s" % e )
        return 0

    while(True):

        try:
            bytesAddressPair = UDPServerSocket.recvfrom(bufferSize)
            message          = bytesAddressPair[0]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



python/awsgs.py [262:272]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    except Exception as e:
        print(" (ERR) File open error: %s" % e )
        return 0

    while(True):

        #   Read data into string
        try:
            bytesAddressPair = UDPServerSocket.recvfrom(bufferSize)

            message = bytesAddressPair[0]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



