	public:
		int retcode;
		unsigned int localsid;
		SellPointInfo info;
		enum { PROTOCOL_TYPE = PROTOCOL_SELLPOINT_RE };
	public:
		SellPoint_Re() { type = PROTOCOL_SELLPOINT_RE; }
		SellPoint_Re(void*) : Protocol(PROTOCOL_SELLPOINT_RE) { }
		SellPoint_Re (int l_retcode,unsigned int l_localsid = 0,const SellPointInfo& l_info = SellPointInfo())
			 : retcode(l_retcode),localsid(l_localsid),info(l_info)
		{
			type = PROTOCOL_SELLPOINT_RE;
		}

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

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

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

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

		int PriorPolicy( ) const { return 1; }

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