mirror of
https://github.com/privacore/open-source-search-engine.git
synced 2025-03-13 09:21:11 -04:00
15 lines
387 B
C
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
|