module: ‘client_udp.py’

class gwa.eperf.client_udp.UDPClient(address, interval, duration, bw, upload, download)[source]
closeSocket()[source]

This function “closeSocket” allows to close TCP and UDP sockets.

createSocket(addr, protocol)[source]

The function “createSocket” allows the creation of a socket UDP or TCP and returns the socket created. It takes 2 arguments : - “addr” : a tuple of the server’s IP address and the port - “protocol” : type of the socket (“SOCK_DGRAM” or “SOCK_STREAM”)

downloadUDP()[source]

The function “downloadUDP” allows to count the size of data received during every interval and calculate the bandwidth for each interval. It adds every measure of the bandwidth in a list called “listFinalDown”.

parameters(interval, duration, bw, upload, download)[source]

The function “parameters” recovers parameters entered by the user (“interval”, “duration”, “bandwidth”, “upload” and “download”) for the server. This function tests also if the input bandwidth exceeds the maximum buffer of the function “sendto()” and initializes the chronometer for the measures.

uploadUDP()[source]

This function “uploadUDP” allows to send data with a random size during the “duration” informed by the user. It sends data with a rate forced every second to the bandwidth given by the user.

Previous topic

module: ‘server_tcp.py’

Next topic

module: ‘server_udp.py’

This Page