In Cocoa, how do I set the TTL on a packet? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T00:41:48Zhttp://stackoverflow.com/feeds/question/1074557http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1074557/in-cocoa-how-do-i-set-the-ttl-on-a-packet1In Cocoa, how do I set the TTL on a packet?casademora2009-07-02T14:04:37Z2009-07-07T03:32:16Z
<p>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?</p>
http://stackoverflow.com/questions/1074557/in-cocoa-how-do-i-set-the-ttl-on-a-packet/1075104#10751043Answer by unforgiven for In Cocoa, how do I set the TTL on a packet?unforgiven2009-07-02T15:35:37Z2009-07-02T15:35:37Z<p>There are two possibilities.</p>
<p>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(). </p>
<p>2) You use directly the CF Apis, for instance </p>
<pre><code> CFSocketSendData
Sends data over a CFSocket object.
CFSocketError CFSocketSendData (
CFSocketRef s,
CFDataRef address,
CFDataRef data,
CFTimeInterval timeout
);
</code></pre>
<p>allows you to set a timeout, which is equivalent to setting the socket option SO_SNDTIMEO.</p>
<pre><code> CFSocketCreateConnectedToSocketSignature
Creates a CFSocket object and opens a connection to a remote socket.
CFSocketRef CFSocketCreateConnectedToSocketSignature (
CFAllocatorRef allocator,
const CFSocketSignature *signature,
CFOptionFlags callBackTypes,
CFSocketCallBack callout,
const CFSocketContext *context,
CFTimeInterval timeout
);
</code></pre>
<p>Kind regards.</p>
http://stackoverflow.com/questions/1074557/in-cocoa-how-do-i-set-the-ttl-on-a-packet/1077943#10779430Answer by Henry Flower for In Cocoa, how do I set the TTL on a packet?Henry Flower2009-07-03T06:04:14Z2009-07-03T06:04:14Z<p>Are you writing YA variant of traceroute? ;)</p>
<p>And yes, plain C sockets API is your friend: call as usual <code>setsockopt()</code> with <code>IP_TTL</code> socket option for IPv4 or <code>IPV6_UNICAST_HOPS</code> for IPv6.</p>