From 6f730ba6a33a562c088d7694295aa2ea258088af Mon Sep 17 00:00:00 2001 From: Emmanuel Schmidbauer Date: Fri, 16 Oct 2020 07:22:33 -0400 Subject: [PATCH] nsq: remove unused defs.h file --- src/modules/nsq/defs.h | 130 ----------------------------------------- 1 file changed, 130 deletions(-) delete mode 100644 src/modules/nsq/defs.h diff --git a/src/modules/nsq/defs.h b/src/modules/nsq/defs.h deleted file mode 100644 index abb7be9073e..00000000000 --- a/src/modules/nsq/defs.h +++ /dev/null @@ -1,130 +0,0 @@ -/* - * NSQ module - * - * Copyright (C) 2010-2014 2600Hz - * - * This file is part of Kamailio, a free SIP server. - * - * Kamailio is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version - * - * Kamailio 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * - * Contributor(s): - * Emmanuel Schmidbauer - * - */ - -#ifndef _NSQ_DEFS_H_ -#define _NSQ_DEFS_H_ - -#define BLF_MAX_DIALOGS 8 -#define BLF_JSON_PRES "Presentity" -#define BLF_JSON_PRES_USER "Presentity-User" -#define BLF_JSON_PRES_REALM "Presentity-Realm" -#define BLF_JSON_FROM "From" -#define BLF_JSON_FROM_USER "From-User" -#define BLF_JSON_FROM_REALM "From-Realm" -#define BLF_JSON_FROM_URI "From-URI" -#define BLF_JSON_TO "To" -#define BLF_JSON_TO_USER "To-User" -#define BLF_JSON_TO_REALM "To-Realm" -#define BLF_JSON_TO_URI "To-URI" -#define BLF_JSON_CALLID "Call-ID" -#define BLF_JSON_TOTAG "To-Tag" -#define BLF_JSON_FROMTAG "From-Tag" -#define BLF_JSON_STATE "State" -#define BLF_JSON_USER "User" -#define BLF_JSON_QUEUE "Queue" -#define BLF_JSON_EXPIRES "Expires" -#define BLF_JSON_APP_NAME "App-Name" -#define BLF_JSON_APP_VERSION "App-Version" -#define BLF_JSON_NODE "Node" -#define BLF_JSON_SERVERID "Server-ID" -#define BLF_JSON_EVENT_CATEGORY "Event-Category" -#define BLF_JSON_EVENT_NAME "Event-Name" -#define BLF_JSON_TYPE "Type" -#define BLF_JSON_MSG_ID "Msg-ID" -#define BLF_JSON_DIRECTION "Direction" - -#define BLF_JSON_CONTACT "Contact" -#define BLF_JSON_EVENT_PKG "Event-Package" -#define MWI_JSON_WAITING "Messages-Waiting" -#define MWI_JSON_VOICE_MESSAGE "MWI-Voice-Message" -#define MWI_JSON_NEW "Messages-New" -#define MWI_JSON_SAVED "Messages-Saved" -#define MWI_JSON_URGENT "Messages-Urgent" -#define MWI_JSON_URGENT_SAVED "Messages-Urgent-Saved" -#define MWI_JSON_ACCOUNT "Message-Account" -#define MWI_JSON_FROM "From" -#define MWI_JSON_TO "To" - -#define DIALOGINFO_BODY_BUFFER_SIZE 8192 -#define MWI_BODY_BUFFER_SIZE 2048 -#define PRESENCE_BODY_BUFFER_SIZE 4096 - -#define MWI_BODY_VOICE_MESSAGE "Messages-Waiting: %.*s\r\nMessage-Account: %.*s\r\nVoice-Message: %.*s\r\n" -#define MWI_BODY_NO_VOICE_MESSAGE "Messages-Waiting: %.*s\r\nMessage-Account: %.*s\r\n" -#define MWI_BODY "Messages-Waiting: %.*s\r\nMessage-Account: %.*s\r\nVoice-Message: %.*s/%.*s (%.*s/%.*s)\r\n" -#define PRESENCE_BODY "\ - \ -\ -\ -%s\ -\ -\ -%s\ -\ -%s\ -%s\ -\ -" - -#define DIALOGINFO_EMPTY_BODY "\ - \ -\ -terminated\ -\ -" - -#define LOCAL_TAG "local-tag=\"%.*s\"" -#define REMOTE_TAG "remote-tag=\"%.*s\"" - -#define DIALOGINFO_BODY "\ -\ -\ -%.*s\ -\ -%.*s\ -\ -\ -\ -%.*s\ -\ -\ -\ -" - -#define DIALOGINFO_BODY_2 "\ -\ -\ -%.*s\ -\ -%.*s\ -\ -\ -%.*s\ -\ -\ -" - -#endif /* _NSQ_DEFS_H_ */