/* call-seq:
 *      event_data.address=(String address) -> self
 *
 *      This method makes it possible to change the list server
 *      address which the server will contact.
 */ 

static VALUE
listServerUpdateEvent_setAddress(VALUE self, VALUE address)
{
        bz_ListServerUpdateEvent *eventData;

        Data_Get_Struct(self, bz_ListServerUpdateEvent, eventData);

        eventData->address = RSTRING(StringValue(address))->ptr;

        return self;
}