Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我现在在 Objective-C 中做一些可爱的套接字编程,我的部分代码给了我一个错误(在 setsockopt 方法调用中)。我想知道是否有人知道与 C++ 中的 GetLastError() 函数类似的函数,我可以在 Objective-C 中使用它来确定我的代码的问题?
您想查看errno是否setsockopt返回负值的值。
errno
setsockopt
从setsockopt手册页:
返回值 成功完成后,setsockopt() 返回 0。否则,返回 -1 并设置 errno 以指示错误。
返回值
成功完成后,setsockopt() 返回 0。否则,返回 -1 并设置 errno 以指示错误。
您可以在此处查看一些标准errno值。