privacore-open-source-searc.../spider_status_t.h
2017-09-26 13:29:36 +02:00

15 lines
387 B
C

#ifndef COLLECTION_SPIDER_STATUS_T_H_
#define COLLECTION_SPIDER_STATUS_T_H_
// . values for CollectionRec::m_spiderStatus
// . reasons why crawl is not happening
enum class spider_status_t : char {
SP_INITIALIZING = 0,
SP_PAUSED = 6, // user paused spider
SP_INPROGRESS = 7, // it is going on!
SP_ADMIN_PAUSED = 8, // g_conf.m_spideringEnabled = false
};
#endif