| 142 | }; |
| 143 | |
| 144 | struct ExtUpdateCmd { |
| 145 | bson::BSONObj selector; |
| 146 | bson::BSONObj update; |
| 147 | bool upsert; |
| 148 | bool multi; |
| 149 | |
| 150 | ExtUpdateCmd(bson::BSONObj selector, bson::BSONObj update, bool upsert, bool multi) |
| 151 | : selector(selector), update(update), upsert(upsert), multi(multi) {} |
| 152 | }; |
| 153 | |
| 154 | struct ExtMsgUpdate : ExtMsg, FastAllocated<ExtMsgUpdate> { |
| 155 | enum { opcode = 2001 }; |
nothing calls this directly
no outgoing calls
no test coverage detected