本文整理匯總了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)
}
}
示例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)
}
}
示例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)
}
}
示例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)
}
}
示例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)
}
}