Differences From Artifact [ba08fae5df]:
- File
src/tcpsocket.c
— part of check-in
[6893b9f5ab]
at
2012-09-30 01:34:46
on branch trunk
— Rename eof to at_end.
This is more fitting as end of file is not really true for a socket. (user: js, size: 3513) [annotate] [blame] [check-ins using]
To Artifact [ff8fe0a597]:
- File src/tcpsocket.c — part of check-in [e1f08057a2] at 2014-07-07 22:46:47 on branch trunk — Add missing definition of _C99_SOURCE (user: js, size: 3533) [annotate] [blame] [check-ins using]
︙ | |||
20 21 22 23 24 25 26 27 28 29 30 31 32 33 | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | + | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #define _C99_SOURCE #define _POSIX_SOURCE #include <stdio.h> #include <string.h> #include <inttypes.h> #include <unistd.h> |
︙ |