11 May
2011
11 May
'11
11:55 a.m.
doqb@hotmail.com wrote:
1. On the access request I see all AVPs there, but I might need to change the order in which they are presented on the packet (I am checking the packet using wireshark). Is that possible?
No. The specifications MANDATE that the order of attributes is unimportant.
2. I added one particular AVP called "3GPP2-Prepaid-acct-Capability" and I set it to the value of 010600000003, but on wireshark I see every digit is padded with "3" in front:
3GPP2_Prepaid_acct_Capability: 303130363030303030303033
Is there any way to remove the padding?
Youv'e set it to a *string* value. If you want to send it as raw bytes, use: 3GPP2_Prepaid_acct_Capability = 0x010600000003 See "man unlang". This is documented. Alan DeKok.