當前位置: 首頁>>代碼示例>>Python>>正文


Python Router.setEnlace方法代碼示例

本文整理匯總了Python中router.Router.setEnlace方法的典型用法代碼示例。如果您正苦於以下問題:Python Router.setEnlace方法的具體用法?Python Router.setEnlace怎麽用?Python Router.setEnlace使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在router.Router的用法示例。


在下文中一共展示了Router.setEnlace方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: Router

# 需要導入模塊: from router import Router [as 別名]
# 或者: from router.Router import setEnlace [as 別名]
h1.ip = '10.1.1.1'
h1.setPapel('ircc')
h1
#-roteadores
r0 = Router("r0", 2)
ipRouter = ['0', '10.0.0.2','1','10.1.1.2', '2' , '192.168.3.3']
r0.setIp(ipRouter)
r0
#-enlaces
e0 = Enlace(h0, r0.getPorta(0), "10M", "5s")
e1 = Enlace(h1, r0.getPorta(1), "10M", "5s")
#e1 = Enlace(h0, h1, "10M", "5s")
#-atribuindo enlaces
h0.setEnlace(e0)
h1.setEnlace(e1)
r0.setEnlace(0, e0)
r0.setEnlace(1, e1)
r0.rotas = rotas
r0.setTempoPacote('2')
elementos.append(h0)
elementos.append(h1)
elementos.append(r0)
elementos.append(e0)
elementos.append(e1)


# Datagrama
m = Mensagem()
m.setMsg("IRC MSG")
s = Segmento('UDP', 8888, 6667)
s.setMensagem(m)
開發者ID:Evnsan,項目名稱:MAC0448,代碼行數:33,代碼來源:test.py


注:本文中的router.Router.setEnlace方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。