Hi everyone,
I am working on TP Link 1043ND and using POX controller. I have implemented
a simple scenario in pox controller. I have created 3 queues on TP Link
device.
I am doing something like below
if packet.find('tcp'):
queue=1
elif packet.find('udp'):
queue=2
else:
queue=3
msg.actions.append(of.ofp_action_enqueue(port = port, queue_id = queue))
Now the thing is I want to find time taken during decision of selecting
queue like
if packet match with first "if condition" how much time will it take and if
packet match with "elif condition" than how much time it will take to
decide queue and in worse condition if both "if" and "elif" are wrong that
how much time will it take to decide that packet has to be forward via
queue-3?
How can I find this latency?