blob: f474551aafe44b15eb90fd19b37fef5696d6a3a1 [file] [log] [blame]
#include <sys/socket.h>
#include <sys/ioctl.h>
int sockatmark(int s)
{
int ret;
if (ioctl(s, SIOCATMARK, &ret) < 0)
return -1;
return ret;
}