From fee81607c448feaa85024f056c54c6a020d10884 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sat, 22 Dec 2012 17:37:29 +0000 Subject: not needed anymore git-svn-id: http://svn.miranda-ng.org/main/trunk@2805 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- .../IMO2sProxy/src/imo2skype/callqueue.c | 95 ---------------------- 1 file changed, 95 deletions(-) delete mode 100644 plugins/!NotAdopted/IMO2sProxy/src/imo2skype/callqueue.c (limited to 'plugins/!NotAdopted/IMO2sProxy/src/imo2skype/callqueue.c') diff --git a/plugins/!NotAdopted/IMO2sProxy/src/imo2skype/callqueue.c b/plugins/!NotAdopted/IMO2sProxy/src/imo2skype/callqueue.c deleted file mode 100644 index f579eb184e..0000000000 --- a/plugins/!NotAdopted/IMO2sProxy/src/imo2skype/callqueue.c +++ /dev/null @@ -1,95 +0,0 @@ -/* Module: callqueue.c - Purpose: Queue for incoming calls - Author: leecher - Date: 02.09.2009 - - Fixme: Sort on insert, do a binary search instead of iterating list. -*/ - -#include -#include -#include -#include "callqueue.h" - -static volatile unsigned int m_uMsgNr=0; -static void FreeEntry(void *pPEntry); - -// ----------------------------------------------------------------------------- -// Interface -// ----------------------------------------------------------------------------- - -TYP_LIST *CallQueue_Init(void) -{ - TYP_LIST *hList = List_Init(16); - - return hList; -} - -// ----------------------------------------------------------------------------- - -void CallQueue_Exit(TYP_LIST *hList) -{ - Queue_Exit (hList, FreeEntry); -} - -// ----------------------------------------------------------------------------- - -CALLENTRY *CallQueue_Insert(TYP_LIST *hList, cJSON *pNick, int iDirection) -{ - CALLENTRY *pEntry; - cJSON *pStream, *pVal, *pPipe; - - if (!(pEntry = Queue_InsertEntry(hList, sizeof(CALLENTRY), ++m_uMsgNr, - FreeEntry))) return NULL; - pEntry->pszUser = strdup(cJSON_GetObjectItem(pNick, "buid")->valuestring); - time (&pEntry->timestamp); - strcpy (pEntry->szStatus, "RINGING"); - - if (pStream = cJSON_GetObjectItem(pNick, "send_stream")) - { - strcpy (pEntry->szSendStream, pStream->valuestring); - if (pStream = cJSON_GetObjectItem(pNick, "recv_stream")) - strcpy (pEntry->szRecvStream, pStream->valuestring); - } - else - { - // Copy pipe to Call object - if (pPipe = cJSON_GetObjectItem(pNick, "pipe")) - { - if (pVal = cJSON_GetObjectItem(pPipe, "ip")) - strncpy (pEntry->szIP, pVal->valuestring, sizeof(pEntry->szIP)); - if (pVal = cJSON_GetObjectItem(pPipe, "conv")) - strncpy (pEntry->szConv, pVal->valuestring, sizeof(pEntry->szConv)); - if (pVal = cJSON_GetObjectItem(pPipe, "role")) - pEntry->iRole = pVal->valueint; - } - } - pEntry->iDirection = iDirection; - return pEntry; -} - -// ----------------------------------------------------------------------------- - -BOOL CallQueue_Remove(TYP_LIST *hList, unsigned int uMsgNr) -{ - return Queue_Remove (hList, uMsgNr, FreeEntry); -} - -// ----------------------------------------------------------------------------- - -CALLENTRY *CallQueue_Find(TYP_LIST *hList, unsigned int uMsgNr) -{ - return (CALLENTRY*)Queue_Find(hList, uMsgNr); -} - -// ----------------------------------------------------------------------------- -// Static -// ----------------------------------------------------------------------------- - -static void FreeEntry(void *pPEntry) -{ - CALLENTRY *pEntry = (CALLENTRY*)pPEntry; - - free (pEntry->pszUser); -} - -- cgit v1.2.3