hi,

As on a need to respond to unexpected OPTIONS request that we receive on our 
test setup, we modified the SIPp source file as follows

File name - call.cpp
Line # - 3735
Original:
else if (((strcmp(P_recv, "INFO") == 0) || (strcmp(P_recv, "NOTIFY") == 0) || 
(strcmp(P_recv, "UPDATE") == 0))
               && (auto_answer == true))

Modified: 

else if (((strcmp(P_recv, "INFO") == 0) || (strcmp(P_recv, "NOTIFY") == 0) || 
(strcmp(P_recv, "UPDATE") == 0) || (strcmp(P_recv, "OPTIONS") == 0))
               && (auto_answer == true))

Please let me know does the above change is a valid one?
I checked some scenario and found to get 200 OK responded automatically for 
OPTIONS too :)

If it is valid, can you let me know if I need to change in any other dependancy 
file (if any)?
(so that I don't run into any problem in future)

thanks,
Naresh



      Unlimited freedom, unlimited storage. Get it now, on 
http://help.yahoo.com/l/in/yahoo/mail/yahoomail/tools/tools-08.html/
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Sipp-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/sipp-users

Reply via email to