
/*  A simple 4-node toploogy testing simple fragmentation.  Each node
    generates messages of exactly 1000 bytes, but each link can only
    deliver 500byte frames - should be a need for 3 fragments per message,
    but no need to further 'sub-fragment' messages at intermediate nodes.
 */

compile = "proj.c proj_dll.c proj_nl.c proj_nltable.c"

messagerate         = 1000ms,
propagationdelay    =  200ms,
bandwidth	    = 56kbps

minmessagesize	    = 1000bytes
maxmessagesize	    = 1000bytes

transmitbufsize     = 500bytes

host perth {
    x=80, y=50
    link to adelaide
}

host adelaide {
    east of perth
    link to melbourne
}

host melbourne {
    east of adelaide
}

host sydney {
    x = 500, y = 20
    link to melbourne
}
