	public:
		int retcode;
		int localsid;
		enum { PROTOCOL_TYPE = PROTOCOL_CHANGEDS_RE };
	public:
		ChangeDS_Re() { type = PROTOCOL_CHANGEDS_RE; }
		ChangeDS_Re(void*) : Protocol(PROTOCOL_CHANGEDS_RE) { }
		ChangeDS_Re (int l_retcode,int l_localsid = 0)
			 : retcode(l_retcode),localsid(l_localsid)
		{
			type = PROTOCOL_CHANGEDS_RE;
		}

		ChangeDS_Re(const ChangeDS_Re &rhs)
			: Protocol(rhs),retcode(rhs.retcode),localsid(rhs.localsid) { }

		GNET::Protocol *Clone() const { return new ChangeDS_Re(*this); }

		OctetsStream& marshal(OctetsStream & os) const
		{
			os << retcode;
			os << localsid;
			return os;
		}

		const OctetsStream& unmarshal(const OctetsStream &os)
		{
			os >> retcode;
			os >> localsid;
			return os;
		}

		int PriorPolicy( ) const { return 1; }

		bool SizePolicy(size_t size) const { return size <= 32; }
