Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to hook some socket functions(such as send, recv,etc) on IOS.

When I'm ready to use mach_star/mach_override, found that it seems to be only available on Mac OS X.So,Who can help me out?

Thanks for any help.

share|improve this question

1 Answer

up vote 0 down vote accepted

Definitely not. You won't be able to inject to another processes -- that is technically disallowed, since your app is running in a sandbox and doesn't have access to other processes. It might work on your own process, but what's the point of that?

share|improve this answer
Thank you, kuba. I just need to hook socket APIs in my own process. – Zhang Zhiliang May 2 '12 at 8:09
If you want this for debugging purposes, you can simply add a breakpoint to any external function. Just do a "break send" command in the GDB/LLDB console. – kuba May 2 '12 at 11:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.