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


Golang Writer.WriteBytes方法代碼示例

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


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

示例1: encodeXDR

func (o Address) encodeXDR(xw *xdr.Writer) (int, error) {
	if len(o.IP) > 16 {
		return xw.Tot(), xdr.ErrElementSizeExceeded
	}
	xw.WriteBytes(o.IP)
	xw.WriteUint16(o.Port)
	return xw.Tot(), xw.Error()
}
開發者ID:nbrownus,項目名稱:syncthing,代碼行數:8,代碼來源:packets_xdr.go

示例2: encodeXDR

func (o BlockInfo) encodeXDR(xw *xdr.Writer) (int, error) {
	xw.WriteUint32(o.Size)
	if len(o.Hash) > 64 {
		return xw.Tot(), xdr.ErrElementSizeExceeded
	}
	xw.WriteBytes(o.Hash)
	return xw.Tot(), xw.Error()
}
開發者ID:jjoergensen,項目名稱:syncthing,代碼行數:8,代碼來源:message_xdr.go

示例3: encodeXDR

func (o QueryV2) encodeXDR(xw *xdr.Writer) (int, error) {
	xw.WriteUint32(o.Magic)
	if len(o.NodeID) > 32 {
		return xw.Tot(), xdr.ErrElementSizeExceeded
	}
	xw.WriteBytes(o.NodeID)
	return xw.Tot(), xw.Error()
}
開發者ID:jjoergensen,項目名稱:syncthing,代碼行數:8,代碼來源:packets_xdr.go

示例4: encodeXDR

func (o TestStruct) encodeXDR(xw *xdr.Writer) (int, error) {
	xw.WriteUint64(uint64(o.I))
	xw.WriteUint16(uint16(o.I16))
	xw.WriteUint16(o.UI16)
	xw.WriteUint32(uint32(o.I32))
	xw.WriteUint32(o.UI32)
	xw.WriteUint64(uint64(o.I64))
	xw.WriteUint64(o.UI64)
	xw.WriteBytes(o.BS)
	xw.WriteString(o.S)
	return xw.Tot(), xw.Error()
}
開發者ID:KayoticSully,項目名稱:syncthing,代碼行數:12,代碼來源:encdec_xdr_test.go

示例5: encodeXDR

func (o AnnounceV1) encodeXDR(xw *xdr.Writer) (int, error) {
	xw.WriteUint32(o.Magic)
	xw.WriteUint16(o.Port)
	if len(o.NodeID) > 64 {
		return xw.Tot(), xdr.ErrElementSizeExceeded
	}
	xw.WriteString(o.NodeID)
	if len(o.IP) > 16 {
		return xw.Tot(), xdr.ErrElementSizeExceeded
	}
	xw.WriteBytes(o.IP)
	return xw.Tot(), xw.Error()
}
開發者ID:ngpestelos,項目名稱:syncthing,代碼行數:13,代碼來源:packets_xdr.go

示例6: encodeXDR

func (o XDRBenchStruct) encodeXDR(xw *xdr.Writer) (int, error) {
	xw.WriteUint64(o.I1)
	xw.WriteUint32(o.I2)
	xw.WriteUint16(o.I3)
	if len(o.Bs0) > 128 {
		return xw.Tot(), xdr.ErrElementSizeExceeded
	}
	xw.WriteBytes(o.Bs0)
	xw.WriteBytes(o.Bs1)
	if len(o.S0) > 128 {
		return xw.Tot(), xdr.ErrElementSizeExceeded
	}
	xw.WriteString(o.S0)
	xw.WriteString(o.S1)
	return xw.Tot(), xw.Error()
}
開發者ID:BenKoerber,項目名稱:syncthing,代碼行數:16,代碼來源:bench_xdr_test.go

示例7: encodeXDR

func (e encodableBytes) encodeXDR(xw *xdr.Writer) (int, error) {
	return xw.WriteBytes(e)
}
開發者ID:2325407504,項目名稱:syncthing,代碼行數:3,代碼來源:protocol.go

示例8: encodeXDR

func (o ResponseMessage) encodeXDR(xw *xdr.Writer) (int, error) {
	xw.WriteBytes(o.Data)
	return xw.Tot(), xw.Error()
}
開發者ID:retgoat,項目名稱:syncthing,代碼行數:4,代碼來源:message_xdr.go

示例9: encodeXDR

func (o fileVersion) encodeXDR(xw *xdr.Writer) (int, error) {
	xw.WriteUint64(o.version)
	xw.WriteBytes(o.node)
	return xw.Tot(), xw.Error()
}
開發者ID:jjoergensen,項目名稱:syncthing,代碼行數:5,代碼來源:leveldb_xdr.go

示例10: encodeXDR

func (o Block) encodeXDR(xw *xdr.Writer) (int, error) {
	xw.WriteUint64(uint64(o.Offset))
	xw.WriteUint32(o.Size)
	xw.WriteBytes(o.Hash)
	return xw.Tot(), xw.Error()
}
開發者ID:jjoergensen,項目名稱:syncthing,代碼行數:6,代碼來源:blocks_xdr.go


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