// SetSubscribe sets the subscribe option for the socket func (s *Sock) SetSubscribe(val string) { C.zsock_set_subscribe(unsafe.Pointer(s.zsockT), C.CString(val)) }
// SetSubscribe sets the subscribe option for the socket func (s *Sock) SetSubscribe(val string) { cVal := C.CString(val) defer C.free(unsafe.Pointer(cVal)) C.zsock_set_subscribe(unsafe.Pointer(s.zsockT), cVal) }