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