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


Golang Address.Domain方法代碼示例

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


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

示例1: Equals

func (subject *AddressSubject) Equals(another v2net.Address) {
	if subject.value.IsIPv4() && another.IsIPv4() {
		IP(subject.value.IP()).Equals(another.IP())
	} else if subject.value.IsIPv6() && another.IsIPv6() {
		IP(subject.value.IP()).Equals(another.IP())
	} else if subject.value.IsDomain() && another.IsDomain() {
		assert.StringLiteral(subject.value.Domain()).Equals(another.Domain())
	} else {
		subject.Fail(subject.DisplayString(), "equals to", another)
	}
}
開發者ID:ducktsmt,項目名稱:v2ray-core,代碼行數:11,代碼來源:address.go

示例2: appendAddress

func appendAddress(request []byte, address v2net.Address) []byte {
	switch {
	case address.IsIPv4():
		request = append(request, byte(0x01))
		request = append(request, address.IP()...)

	case address.IsIPv6():
		request = append(request, byte(0x04))
		request = append(request, address.IP()...)

	case address.IsDomain():
		request = append(request, byte(0x03), byte(len(address.Domain())))
		request = append(request, []byte(address.Domain())...)

	}
	return request
}
開發者ID:ChoyesYan,項目名稱:v2ray-core,代碼行數:17,代碼來源:socks5_helper.go


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