我正在使用从github找到的 PDU 生成器,并且在生成简单的 7 位字符消息时一切正常。
问题是我想以 16 位模式发送 Unicode 字符,我必须输入一个 UTF-16BE 格式的十六进制值的字符消息,每个 Unicode 字符分成两个字符,就像这样。
假设 'Ė' 的 Unicode 字符将在 Unicode 中转换为 U+0116,在我的程序中转换为 '\x01\x16'。
我根据 github repo 中的示例使用这种格式。
char* message = "\x01\x01\x01\x16"; // Output message will translate to 'āĖ' and is working fine
然而,输入一个包含十六进制值 '\x00' 的字符将像这样忽略消息的其余部分。
char* message = "\x01\x01\x01\x16\x00\x41\x00\x42\x00\x43"; // Output message will translate to 'āĖ'
// when decoded but should instead contain 'āĖABC'
我试图四处寻找没有成功的解决方案,这里是编码功能的某些部分,它们似乎生成了 PDU 消息。
void make_pdu(char* number, char* message, int messagelen, int alphabet, int flash_sms, int report, int with_udh,
char* udh_data, char* mode, char* pdu, int validity, int replace_msg, int system_msg, int number_type)
{
int coding;
int flags;
char tmp[50];
char tmp2[500];
int numberformat;
int numberlength;
char *p;
int l;
...
if (alphabet == 1)
coding = 4; // 8bit binary
else if (alphabet == 2)
coding = 8; // 16bit <THE OPTION I USE>
else
coding = 0; // 7bit
if (flash_sms > 0)
coding += 0x10; // Bits 1 and 0 have a message class meaning (class 0, alert)
/* Create the PDU string of the message */
if (alphabet==1 || alphabet==2 || system_msg) // THE OPTION I USE
{
...
binary2pdu(message,messagelen,tmp2);
}
else
messagelen=text2pdu(message,messagelen,tmp2,udh_data);
/* concatenate the first part of the PDU string */
if (strcmp(mode,"old")==0)
sprintf(pdu,"%02X00%02X%02X%s00%02X%02X",flags,numberlength,numberformat,tmp,coding,messagelen);
else // THE OPTION I USE
{
...
sprintf(pdu, "00%02X00%02X%02X%s%02X%02X%02X%02X", flags, numberlength, numberformat, tmp, proto, coding, validity, messagelen);
}
/* concatenate the text to the PDU string */
strcat(pdu,tmp2);
}
/* Converts binary to PDU string, this is basically a hex dump. */
void binary2pdu(char* binary, int length, char* pdu)
{
int character;
char octett[10];
if (length>maxsms_binary)
length=maxsms_binary;
pdu[0]=0;
for (character=0;character<length; character++)
{
//printf("Beep\n");
sprintf(octett,"%02X",(unsigned char) binary[character]);
strcat(pdu,octett);
}
}