dns/rawmsg.go

15 lines
429 B
Go
Raw Normal View History

2011-08-08 22:09:05 +10:00
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package dns
2011-09-26 17:11:14 +10:00
// Function defined in this subpackage work on []byte and but still
// provide some higher level functions.
2011-08-08 22:09:05 +10:00
2011-09-01 16:35:08 +10:00
// RawSetId sets the message ID in buf.
func RawSetId(msg []byte, off int, id uint16) bool {
msg[off], msg[off+1] = packUint16(id)
2011-11-28 16:03:21 +11:00
return true
2011-08-09 00:29:13 +10:00
}