| 44 | bstream->writeString(mString.getString()); |
| 45 | } |
| 46 | virtual void write(NetConnection* /*ps*/, BitStream *bstream) |
| 47 | { |
| 48 | bstream->writeInt(mIndex, ConnectionStringTable::EntryBitSize); |
| 49 | bstream->writeString(mString.getString()); |
| 50 | } |
| 51 | virtual void unpack(NetConnection* /*con*/, BitStream *bstream) |
| 52 | { |
| 53 | char buf[256]; |
nothing calls this directly
no test coverage detected