i'm making an android IMS client using android-ngn-stack , so i wanna to modifi some header parameters so how i can edit in this headers and remove parameter , add parameter , modifi parameter .
thanks a lot ,for example , how can i set max forwards to 100 instead of 70
The max forwards value can be set using the method 'setMaxFDs' in the SipStack class:
public boolean setMaxFDs(long max_fds) {
return tinyWRAPJNI.SipStack_setMaxFDs(swigCPtr, this, max_fds);
}