I want to be able to explicitly set the TTL value for a socket connection using Cocoa. I've been unable to see anything useful in the CoreFoundation docs. Do I need to go even lower to the BSD Sockets to set the TTL value?
|
|
|
|
|
|
|
There are two possibilities. 1) You can use plain C/Unix style sockets, so that you first create your socket, then set its options using setsockopt() including the ones you want to add (you may want to check first if these are supported), and finally you create a a CFSocket using CFSocketCreateWithNative(). 2) You use directly the CF Apis, for instance
allows you to set a timeout, which is equivalent to setting the socket option SO_SNDTIMEO.
Kind regards. |
||
|
|
|
|
Are you writing YA variant of traceroute? ;) And yes, plain C sockets API is your friend: call as usual |
||
|
|
