*/
public void transmitRtpiAdu(LinkedList packets, float redundancy, int transmissionInterval)
throws QosNotSupportedException, IllegalValueException {
if (redundancy!=0) {
throw new QosNotSupportedException("UdpUnreliable: redundancy not supported by UdpUnreliable");
}
ListIterator iter = packets.listIterator();
if (!iter.hasNext()) {