William A. Rowe, Jr. wrote:
+#ifdef SIOCATMARK + int oobmark; + + if (ioctl(sock->socketdes, SIOCATMARK, (void*) &oobmark) < 0) + return apr_get_netos_error(); + + *atmark = (oobmark != 0); + + return APR_SUCCESS; +#else + return APR_ENOTIMPL; +#endif }
Hopefully this provide the behavior you desired, Jeff. Thanks to yourself, Brian and Jim for all the efforts.
yeah, looks good... just clearing up minor details ;)
