| 1186 | } |
| 1187 | |
| 1188 | void sscanCommand(client *c) { |
| 1189 | robj *set; |
| 1190 | unsigned long cursor; |
| 1191 | |
| 1192 | if (parseScanCursorOrReply(c,c->argv[2],&cursor) == C_ERR) return; |
| 1193 | if ((set = lookupKeyReadOrReply(c,c->argv[1],shared.emptyscan)) == NULL || |
| 1194 | checkType(c,set,OBJ_SET)) return; |
| 1195 | scanGenericCommand(c,set,cursor); |
| 1196 | } |
nothing calls this directly
no test coverage detected