node-smppを使用していますが、「deliver_sm」リクエストを送信して「TLV」レスポンスを user_message_reference に追加する方法を知りたいです。
node-smpp / lib / smpp.js の抜粋:
exports.addTLV = function(tag, options) {
options.tag = tag;
defs.tlvs[tlv] = options;
defs.tlvsById[options.id] = options;
};
テストコード:
var tlv = new Object();
tlv.tag = 0x001E; // smpp.receipted_message_id;
tlv.lenght = msgid.lenght;
tlv.value = msgid;
smpp.addTLV(tlv,tlv);
結果:
defs.tlvs[tlv] = options;
^
ReferenceError: tlv is not defined