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


Golang engine.PjsuaCallUri函數代碼示例

本文整理匯總了Golang中github.com/cgrates/cgrates/engine.PjsuaCallUri函數的典型用法代碼示例。如果您正苦於以下問題:Golang PjsuaCallUri函數的具體用法?Golang PjsuaCallUri怎麽用?Golang PjsuaCallUri使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


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

示例1: TestTutKamCallsCall1007To1002

func TestTutKamCallsCall1007To1002(t *testing.T) {
	if !*testCalls {
		return
	}
	if err := engine.PjsuaCallUri(&engine.PjsuaAccount{Id: "sip:[email protected]", Username: "1007", Password: "CGRateS.org", Realm: "*"}, "sip:[email protected]",
		"sip:127.0.0.1:5060", time.Duration(66)*time.Second, 5077); err != nil {
		t.Fatal(err)
	}
}
開發者ID:bhepp,項目名稱:cgrates,代碼行數:9,代碼來源:tutorial_kam_calls_test.go

示例2: TestTutOsipsCallsCall1006To1002

func TestTutOsipsCallsCall1006To1002(t *testing.T) {
	if !*testCalls {
		return
	}
	if err := engine.PjsuaCallUri(&engine.PjsuaAccount{Id: "sip:[email protected]", Username: "1006", Password: "1234", Realm: "*"}, "sip:[email protected]",
		"sip:127.0.0.1:5060", time.Duration(64)*time.Second, 5076); err != nil {
		t.Fatal(err)
	}
}
開發者ID:gale320,項目名稱:cgrates,代碼行數:9,代碼來源:tutorial_osips_calls_test.go

示例3: TestTutAstCallsCall1001To1003

// Call from 1001 (prepaid) to 1003
func TestTutAstCallsCall1001To1003(t *testing.T) {
	if !*testCalls {
		return
	}
	if err := engine.PjsuaCallUri(&engine.PjsuaAccount{Id: "sip:[email protected]", Username: "1001", Password: astPassword, Realm: "*"}, "sip:[email protected]",
		"sip:127.0.0.1:5060", time.Duration(65)*time.Second, 5072); err != nil {
		t.Fatal(err)
	}
}
開發者ID:eloycoto,項目名稱:cgrates,代碼行數:10,代碼來源:tutorial_astevents_calls_test.go

示例4: TestTutOsipsCallsCall1004To1001

func TestTutOsipsCallsCall1004To1001(t *testing.T) {
	if err := engine.PjsuaCallUri(&engine.PjsuaAccount{Id: "sip:[email protected]", Username: "1004", Password: "1234", Realm: "*"}, "sip:[email protected]",
		"sip:127.0.0.1:5060", time.Duration(62)*time.Second, 5075); err != nil {
		t.Fatal(err)
	}
}
開發者ID:cgrates,項目名稱:cgrates,代碼行數:6,代碼來源:tutorial_osips_calls_test.go

示例5: TestTutKamCallsCall1003To1001

func TestTutKamCallsCall1003To1001(t *testing.T) {
	if err := engine.PjsuaCallUri(&engine.PjsuaAccount{Id: "sip:[email protected]", Username: "1003", Password: "CGRateS.org", Realm: "*"}, "sip:[email protected]",
		"sip:127.0.0.1:5060", time.Duration(63)*time.Second, 5074); err != nil {
		t.Fatal(err)
	}
}
開發者ID:cgrates,項目名稱:cgrates,代碼行數:6,代碼來源:tutorial_kam_calls_test.go


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