############################################# # Author: Jae Chung # # goos@cs.wpi.edu # # http://www.wpi.edu/~goos/ # # # # Research Group: http://perform.wpi.edu/ # ############################################# ####################### # General Information # ####################### Original NS version: ns-allinone-2.1b4a Modified Files: tcl/lib/ns-defaults.tcl agent.h packet.h tcl/lib/ns-packet.tcl Added Files: udp-mm.h udp-mm.cc mm-app.h mm-app.cc mm-app-mpeg.h mm-app-mpeg.cc ############################# # File specific Description # ############################# tcl/lib/ns-defaults.tcl: The defaults parameter values for newly added network components are added in this file. agent.h: 2 lines (72-73) are added to make udp-mm to support MM tagging (set prioriy bit to 15) without any complaints. packet.h tcl/lib/ns-packet.tcl: Multimedia packet header type is added to these files, The Multimedia packet is actually defined in "udp-mm.h". The UDP_MM agent uses Multimedia header to send MM_APP and MPEG_APP frames. In fact, only frame information, not actual multimedia application data, is sent. udp-mm.h udp-mm.cc: Extended from "udp.h" and "udp.cc". UDP_MM is a UDP agent that supports multimedia appications. It's also sets priority bit of IP header to 15, if an application (MM_APP or MPEG_APP) asks to. mm-app.h mm-app.cc: Implements MM_APP traffic generator. MM_APP is extended from CBR traffic generator. MM_APP implements a flow control mechanism based on media scaling. mm-app-mpeg.h mm-app-mpeg.cc: Implements MPEG_APP. MPEG_APP has the same flow-control mechanism as MM_APP. But, it reads in a MPEG trace file and generates traffic based on the input file and congestion notification from the network [End of File]