mirror of
https://github.com/haiwen/seafile-server.git
synced 2025-04-27 19:15:07 +00:00
21 lines
582 B
C
21 lines
582 B
C
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
#ifndef SYNC_REPO_COMMON
|
|
#define SYNC_REPO_COMMON
|
|
|
|
#define SC_COMMIT_ID "300"
|
|
#define SS_COMMIT_ID "Commit ID"
|
|
#define SC_NO_REPO "301"
|
|
#define SS_NO_REPO "No such repo"
|
|
#define SC_NO_BRANCH "302"
|
|
#define SS_NO_BRANCH "No such branch"
|
|
#define SC_NO_DSYNC "303"
|
|
#define SS_NO_DSYNC "Not double sync"
|
|
#define SC_REPO_CORRUPT "304"
|
|
#define SS_REPO_CORRUPT "Repo corrupted"
|
|
|
|
#define SC_SERVER_ERROR "401"
|
|
#define SS_SERVER_ERROR "Internal server error"
|
|
|
|
#endif
|