
/*  A simple 5-node toploogy testing simple fragmentation.  Each node
    generates messages of exactly 1000 bytes, and each link has its own
    carrying capacity.  There is also a simple choice of routes between
    some src/dest pairs, but it is unlikley that any projects will choose to
    route messages based on optimal (minimal) fragmentation.
 */

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

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

minmessagesize	    = 1000bytes
maxmessagesize	    = 1000bytes

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

host adelaide {
    east of perth
    transmitbufsize = 300bytes
    link to melbourne
    link to hobart
}

host melbourne {
    transmitbufsize = 200bytes
    east of adelaide
}

host sydney {
    x = 500, y = 20
    transmitbufsize = 100bytes
    link to melbourne
    link to hobart
}

host hobart {
    x = 400, y = 200
    transmitbufsize = 100bytes
    link to adelaide
    link to sydney
}
