From ba8b5469506b3f0caeeead89028a5b61120206e3 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Mon, 8 Jan 2024 13:22:45 +0300 Subject: no need to call PSS_GETINFO, PSS_GETAWAYMSG, PSS_FILEALLOW, PSS_FILEDENY & PSS_FILECANCEL via Proto_ChainSend with all those filters etc, the simple call of CallContactService is enough --- protocols/EmLanProto/src/amdproto.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'protocols/EmLanProto') diff --git a/protocols/EmLanProto/src/amdproto.cpp b/protocols/EmLanProto/src/amdproto.cpp index 215f02a24b..30f0bc886c 100644 --- a/protocols/EmLanProto/src/amdproto.cpp +++ b/protocols/EmLanProto/src/amdproto.cpp @@ -334,13 +334,13 @@ int CMPlugin::Load() CreateProtoServiceFunction(MODULENAME, PS_ADDTOLIST, EMPAddToList); CreateProtoServiceFunction(MODULENAME, PSS_MESSAGE, EMPSendMessage); CreateProtoServiceFunction(MODULENAME, PSR_MESSAGE, EMPRecvMessage); - CreateProtoServiceFunction(MODULENAME, PSS_GETAWAYMSG, EMPGetAwayMsg); + CreateProtoServiceFunction(MODULENAME, PS_GETAWAYMSG, EMPGetAwayMsg); CreateProtoServiceFunction(MODULENAME, PS_SETAWAYMSG, EMPSetAwayMsg); CreateProtoServiceFunction(MODULENAME, PSR_AWAYMSG, EMPRecvAwayMessage); CreateProtoServiceFunction(MODULENAME, PS_FILERESUME, EMPFileResume); - CreateProtoServiceFunction(MODULENAME, PSS_FILEALLOW, EMPSendFileAllow); - CreateProtoServiceFunction(MODULENAME, PSS_FILEDENY, EMPSendFileDeny); - CreateProtoServiceFunction(MODULENAME, PSS_FILECANCEL, EMPSendFileCancel); + CreateProtoServiceFunction(MODULENAME, PS_FILEALLOW, EMPSendFileAllow); + CreateProtoServiceFunction(MODULENAME, PS_FILEDENY, EMPSendFileDeny); + CreateProtoServiceFunction(MODULENAME, PS_FILECANCEL, EMPSendFileCancel); CreateProtoServiceFunction(MODULENAME, PSS_FILE, EMPSendFile); CreateProtoServiceFunction(MODULENAME, PSR_FILE, EMPRecvFile); -- cgit v1.2.3