func (c *Channel) Label() string { s := C.CGO_Channel_Label(c.cgoChannel) return C.GoString(s) }
func (c *DataChannel) Label() string { s := C.CGO_Channel_Label(c.cgoChannel) defer C.free(unsafe.Pointer(s)) return C.GoString(s) }