summaryrefslogtreecommitdiff
path: root/Protocols/SIP/SIPProto.h
diff options
context:
space:
mode:
Diffstat (limited to 'Protocols/SIP/SIPProto.h')
-rw-r--r--Protocols/SIP/SIPProto.h155
1 files changed, 155 insertions, 0 deletions
diff --git a/Protocols/SIP/SIPProto.h b/Protocols/SIP/SIPProto.h
new file mode 100644
index 0000000..53f81e8
--- /dev/null
+++ b/Protocols/SIP/SIPProto.h
@@ -0,0 +1,155 @@
+/*
+Copyright (C) 2009 Ricardo Pescuma Domenecci
+
+This is free software; you can redistribute it and/or
+modify it under the terms of the GNU Library General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This 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
+Library General Public License for more details.
+
+You should have received a copy of the GNU Library General Public
+License along with this file; see the file license.txt. If
+not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+*/
+
+#ifndef __SIPPROTO_H__
+#define __SIPPROTO_H__
+
+
+class SIPProto;
+typedef INT_PTR (__cdecl SIPProto::*SIPServiceFunc)(WPARAM, LPARAM);
+typedef INT_PTR (__cdecl SIPProto::*SIPServiceFuncParam)(WPARAM, LPARAM, LPARAM);
+typedef int (__cdecl SIPProto::*SIPEventFunc)(WPARAM, LPARAM);
+
+class SIPProto : public PROTO_INTERFACE
+{
+private:
+ HANDLE hNetlibUser;
+ HANDLE hCallStateEvent;
+ //bool hasToDestroy;
+ pjsua_transport_id transport_id;
+ pjsua_acc_id acc_id;
+
+ struct {
+ TCHAR host[256];
+ int port;
+ TCHAR username[16];
+ char password[16];
+ BYTE savePassword;
+
+ struct {
+ TCHAR host[256];
+ TCHAR port;
+ } stun;
+ } opts;
+
+public:
+ OptPageControl accountManagerCtrls[5];
+ OptPageControl optionsCtrls[7];
+
+ SIPProto(const char *aProtoName, const TCHAR *aUserName);
+ virtual ~SIPProto();
+
+ virtual HANDLE __cdecl AddToList( int flags, PROTOSEARCHRESULT* psr ) { return 0; }
+ virtual HANDLE __cdecl AddToListByEvent( int flags, int iContact, HANDLE hDbEvent ) { return 0; }
+
+ virtual int __cdecl Authorize( HANDLE hDbEvent ) { return 1; }
+ virtual int __cdecl AuthDeny( HANDLE hDbEvent, const char* szReason ) { return 1; }
+ virtual int __cdecl AuthRecv( HANDLE hContact, PROTORECVEVENT* ) { return 1; }
+ virtual int __cdecl AuthRequest( HANDLE hContact, const char* szMessage ) { return 1; }
+
+ virtual HANDLE __cdecl ChangeInfo( int iInfoType, void* pInfoData ) { return 0; }
+
+ virtual HANDLE __cdecl FileAllow( HANDLE hContact, HANDLE hTransfer, const PROTOCHAR* szPath ) { return 0; }
+ virtual int __cdecl FileCancel( HANDLE hContact, HANDLE hTransfer ) { return 1; }
+ virtual int __cdecl FileDeny( HANDLE hContact, HANDLE hTransfer, const PROTOCHAR* szReason ) { return 1; }
+ virtual int __cdecl FileResume( HANDLE hTransfer, int* action, const PROTOCHAR** szFilename ) { return 1; }
+
+ virtual DWORD_PTR __cdecl GetCaps( int type, HANDLE hContact = NULL );
+
+ virtual HICON __cdecl GetIcon( int iconIndex ) { return 0; }
+ virtual int __cdecl GetInfo( HANDLE hContact, int infoType ) { return 1; }
+
+ virtual HANDLE __cdecl SearchBasic( const char* id ) { return 0; }
+ virtual HANDLE __cdecl SearchByEmail( const char* email ) { return 0; }
+ virtual HANDLE __cdecl SearchByName( const char* nick, const char* firstName, const char* lastName ) { return 0; }
+ virtual HWND __cdecl SearchAdvanced( HWND owner ) { return 0; }
+ virtual HWND __cdecl CreateExtendedSearchUI( HWND owner ) { return 0; }
+
+ virtual int __cdecl RecvContacts( HANDLE hContact, PROTORECVEVENT* ) { return 1; }
+ virtual int __cdecl RecvFile( HANDLE hContact, PROTOFILEEVENT* ) { return 1; }
+ virtual int __cdecl RecvMsg( HANDLE hContact, PROTORECVEVENT* ) { return 1; }
+ virtual int __cdecl RecvUrl( HANDLE hContact, PROTORECVEVENT* ) { return 1; }
+
+ virtual int __cdecl SendContacts( HANDLE hContact, int flags, int nContacts, HANDLE* hContactsList ) { return 1; }
+ virtual HANDLE __cdecl SendFile( HANDLE hContact, const PROTOCHAR* szDescription, PROTOCHAR** ppszFiles ) { return 0; }
+ virtual int __cdecl SendMsg( HANDLE hContact, int flags, const char* msg ) { return 1; }
+ virtual int __cdecl SendUrl( HANDLE hContact, int flags, const char* url ) { return 1; }
+
+ virtual int __cdecl SetApparentMode( HANDLE hContact, int mode ) { return 1; }
+
+ virtual int __cdecl SetStatus( int iNewStatus );
+
+ virtual HANDLE __cdecl GetAwayMsg( HANDLE hContact ) { return 0; }
+ virtual int __cdecl RecvAwayMsg( HANDLE hContact, int mode, PROTORECVEVENT* evt ) { return 1; }
+ virtual int __cdecl SendAwayMsg( HANDLE hContact, HANDLE hProcess, const char* msg ) { return 1; }
+ virtual int __cdecl SetAwayMsg( int iStatus, const char* msg ) { return 1; }
+
+ virtual int __cdecl UserIsTyping( HANDLE hContact, int type ) { return 0; }
+
+ virtual int __cdecl OnEvent( PROTOEVENTTYPE iEventType, WPARAM wParam, LPARAM lParam );
+
+ void on_reg_state();
+ void on_incoming_call(pjsua_call_id call_id, pjsip_rx_data *rdata);
+ void on_call_state(pjsua_call_id call_id, pjsip_event *e);
+ void on_call_media_state(pjsua_call_id call_id);
+
+private:
+ void BroadcastStatus(int newStatus);
+ void CreateProtoService(const char* szService, SIPServiceFunc serviceProc);
+ void CreateProtoService(const char* szService, SIPServiceFuncParam serviceProc, LPARAM lParam);
+ HANDLE CreateProtoEvent(const char* szService);
+ void HookProtoEvent(const char* szEvent, SIPEventFunc pFunc);
+ int SendBroadcast(HANDLE hContact, int type, int result, HANDLE hProcess, LPARAM lParam);
+
+ int __cdecl OnModulesLoaded(WPARAM wParam, LPARAM lParam);
+ int __cdecl OnOptionsInit(WPARAM wParam,LPARAM lParam);
+ int __cdecl OnPreShutdown(WPARAM wParam,LPARAM lParam);
+
+ void Trace(TCHAR *fmt, ...);
+ void Info(TCHAR *fmt, ...);
+ void Error(TCHAR *fmt, ...);
+ void Error(pj_status_t status, TCHAR *fmt, ...);
+ void ShowMessage(int type, TCHAR *fmt, va_list args);
+
+ bool SendPresence(int status);
+ int Connect();
+ void Disconnect();
+ INT_PTR __cdecl CreateAccMgrUI(WPARAM wParam, LPARAM lParam);
+
+ void ConfigureDevices();
+ void BuildURI(TCHAR *out, int outSize, const TCHAR *number);
+
+ // Voice services
+ void NotifyCall(pjsua_call_id call_id, int state, HANDLE hContact = NULL, TCHAR *name = NULL, TCHAR *number = NULL);
+ int __cdecl VoiceCaps(WPARAM wParam,LPARAM lParam);
+ int __cdecl VoiceCall(WPARAM wParam,LPARAM lParam);
+ int __cdecl VoiceAnswerCall(WPARAM wParam,LPARAM lParam);
+ int __cdecl VoiceDropCall(WPARAM wParam,LPARAM lParam);
+ int __cdecl VoiceHoldCall(WPARAM wParam,LPARAM lParam);
+ int __cdecl VoiceSendDTMF(WPARAM wParam,LPARAM lParam);
+ int __cdecl VoiceCallStringValid(WPARAM wParam,LPARAM lParam);
+
+ // Static callbacks
+ static void CALLBACK DisconnectProto(void *param);
+};
+
+
+
+
+#endif // __SIPPROTO_H__