| 114 | } |
| 115 | |
| 116 | void AMFWriter::writeBoolean(bool value){ |
| 117 | if(!_amf3) |
| 118 | packet.write8(AMF_BOOLEAN).writeBool(value); |
| 119 | else |
| 120 | packet.write8(value ? AMF3_TRUE : AMF3_FALSE); |
| 121 | } |
| 122 | |
| 123 | UInt64 AMFWriter::writeDate(const Date& date){ |
| 124 | if(!_amf3) { |
no outgoing calls
no test coverage detected