1. 23 Oct, 2017 1 commit
  2. 04 Oct, 2017 1 commit
  3. 03 Jul, 2017 1 commit
    • Make sure to always include "common.h" first · 0c7f49dd
      Next to including several files, our "common.h" header also declares
      various macros which are then used throughout the project. As such, we
      have to make sure to always include this file first in all
      implementation files. Otherwise, we might encounter problems or even
      silent behavioural differences due to macros or defines not being
      defined as they should be. So in fact, our header and implementation
      files should make sure to always include "common.h" first.
      
      This commit does so by establishing a common include pattern. Header
      files inside of "src" will now always include "common.h" as its first
      other file, separated by a newline from all the other includes to make
      it stand out as special. There are two cases for the implementation
      files. If they do have a matching header file, they will always include
      this one first, leading to "common.h" being transitively included as
      first file. If they do not have a matching header file, they instead
      include "common.h" as first file themselves.
      
      This fixes the outlined problems and will become our standard practice
      for header and source files inside of the "src/" from now on.
      Patrick Steinhardt committed
  4. 26 Apr, 2017 1 commit
    • socket_stream: continue to next addrinfo on socket creation failure · 954e06a8
      When connecting to a remote via socket stream, we first use getaddrinfo
      to obtain the possible connection methods followed by creating and
      connecting the socket. But when creating the socket, we error out as
      soon as we get an invalid socket instead of trying out other address
      hints returned by addrinfo.
      
      Fix this by continuing on invalid socket instead of returning an error.
      This fixes connection establishment with musl libc.
      Patrick Steinhardt committed
  5. 29 Dec, 2016 1 commit
  6. 10 Dec, 2014 4 commits