2017-07-10 111 views
0

我使用Node.js創建SMPP服務器。PDU響應參數

這一切都可以,但現在,我必須向客戶端發送pdu.response()中的自定義參數,如'message_id'。

如果我做的:

session.send(pdu.response({comand_status: 999})); 

它的工作原理,但如果我不

session.send(pdu.response({message_id: 999})); 

我總是收到

PDU { 
    command_length: 16, 
    command_id: 2432432, 
    command_status: 0, 
    sequence_number: 1, 
    command: 'bind_transceiver_resp' } 

所以,我有一個問題。我可以這樣做嗎?或者使用SMPP是不可能的?

謝謝大家。

回答

0

不,你實際上不能添加任何自定義參數到pdu響應。但是,試着檢查可選參數是否符合你的需求