swad-core/swad_constant.h

79 lines
3.0 KiB
C
Raw Normal View History

2014-12-01 23:55:08 +01:00
// swad_constant.h: common constants used in several modules
#ifndef _SWAD_CNS
#define _SWAD_CNS
/*
SWAD (Shared Workspace At a Distance),
is a web platform developed at the University of Granada (Spain),
and used to support university teaching.
This file is part of SWAD core.
2017-01-13 01:51:23 +01:00
Copyright (C) 1999-2017 Antonio Ca<EFBFBD>as Vargas
2014-12-01 23:55:08 +01:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*****************************************************************************/
/********************************* Headers ***********************************/
/*****************************************************************************/
#include "swad_string.h"
/*****************************************************************************/
/***************************** Public constants ******************************/
/*****************************************************************************/
2017-03-09 11:16:17 +01:00
#define Cns_MAX_CHARS_WWW (256 - 1) // 255: max. number of chars of a URL
#define Cns_MAX_BYTES_WWW Cns_MAX_CHARS_WWW // 255
2014-12-01 23:55:08 +01:00
2017-03-08 20:31:49 +01:00
#define Cns_MAX_CHARS_IP (3 + 1 + 3 + 1 + 3 + 1 + 3) // 15: max. number of chars of an IP address
2017-03-11 20:59:09 +01:00
// Example: 255.255.255.255
// 3+1+3+1+3+1+3
// 123456789012345
2017-03-08 20:31:49 +01:00
#define Cns_MAX_BYTES_IP Cns_MAX_CHARS_IP // 15
2014-12-01 23:55:08 +01:00
2017-03-07 11:03:05 +01:00
#define Cns_MAX_CHARS_DATE (4 + 1 + 2 + 1 + 2)
#define Cns_MAX_BYTES_DATE Cns_MAX_CHARS_DATE
2014-12-01 23:55:08 +01:00
2017-03-13 13:17:53 +01:00
#define Cns_MAX_CHARS_EMAIL_ADDRESS (256 - 1) // 255
#define Cns_MAX_BYTES_EMAIL_ADDRESS Cns_MAX_CHARS_EMAIL_ADDRESS // 255
2017-03-13 02:19:49 +01:00
2017-03-08 14:12:33 +01:00
#define Cns_MAX_CHARS_SUBJECT (256 - 1) // 255
#define Cns_MAX_BYTES_SUBJECT ((Cns_MAX_CHARS_SUBJECT + 1) * Str_MAX_BYTES_PER_CHAR - 1) // 4095
2017-03-06 13:01:16 +01:00
2017-03-07 01:56:41 +01:00
#define Cns_MAX_BYTES_TEXT ( 64 * 1024 - 1) // Used for medium texts
2017-01-28 15:58:46 +01:00
#define Cns_MAX_BYTES_LONG_TEXT (256 * 1024 - 1) // Used for big contents
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/******************************* Public types ********************************/
/*****************************************************************************/
typedef enum
{
Cns_QUIET,
Cns_VERBOSE,
} Cns_QuietOrVerbose_t;
// Related with names of centres, degrees, courses,...
typedef enum
{
2016-10-28 10:03:37 +02:00
Cns_SHRT_NAME,
2014-12-01 23:55:08 +01:00
Cns_FULL_NAME,
2016-10-28 10:03:37 +02:00
} Cns_ShrtOrFullName_t;
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/***************************** Public prototypes *****************************/
/*****************************************************************************/
#endif