index
:
tteras/strongswan
master
tteras
tteras-release
tteras' strongSwan tree
gitolite
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
libstrongswan
/
utils
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
windows: Make sure the string returned from ReadConsole() is null terminated
Tobias Brunner
2014-07-02
1
-0
/
+2
*
backtrace: Remove name checks after SymFromAddr() calls
Tobias Brunner
2014-07-02
1
-9
/
+5
*
parser-helper: Ensure file_next() does not remove the sentinel item
Tobias Brunner
2014-07-01
1
-1
/
+1
*
utils: Helper macros to define overloaded macros based on number of arguments
Tobias Brunner
2014-06-30
1
-0
/
+26
*
enum: Replace รพ with p in Doxygen comments
Tobias Brunner
2014-06-30
1
-2
/
+2
*
Fixed some typos
Tobias Brunner
2014-06-30
1
-1
/
+1
*
windows: Include <sys/stat.h> explicitly before overloading memset()/memcpy()
Martin Willi
2014-06-25
1
-0
/
+1
*
utils: Add wrappers for memcpy(3), memmove(3) and memset(3)
Tobias Brunner
2014-06-24
1
-1
/
+33
*
identification: Only use either , or / to separate RDNs
Tobias Brunner
2014-06-18
1
-3
/
+13
*
windows: Declare strerror_s()
Martin Willi
2014-06-17
1
-0
/
+5
*
windows: Extend strerror_r/s by extended POSIX errno strings
Martin Willi
2014-06-17
2
-0
/
+66
*
windows: Implement strerror_r using strerror_s
Martin Willi
2014-06-17
1
-0
/
+9
*
windows: Wrap most Winsock2 Posix functions to set errno
Martin Willi
2014-06-17
2
-65
/
+198
*
backtrace: Use GetModuleInformation/GetModuleFileNameEx directly on Win32
Martin Willi
2014-06-06
1
-2
/
+10
*
windows: Use WINAPI call convention for Windows API callbacks
Martin Willi
2014-06-06
2
-3
/
+3
*
windows: Provide POSIX supplement errno values missing in MinGW
Martin Willi
2014-06-04
2
-23
/
+147
*
windows: Provide shutdown(2) operation aliases mapping to those on Windows
Martin Willi
2014-06-04
1
-0
/
+7
*
unit-tests: Support testable functions on Windows, avoid weak GCC symbols
Martin Willi
2014-06-04
2
-33
/
+56
*
unit-tests: Seed chunk_hash() only once, but before creating any hashtables
Martin Willi
2014-06-04
2
-1
/
+10
*
utils: Add a wait_sigint() function to wait for SIGINT or equivalent
Martin Willi
2014-06-04
2
-0
/
+88
*
chunk: On Windows, use binary mode in chunk_write()
Martin Willi
2014-06-04
1
-1
/
+8
*
parser-helper: Detect absolute pathnames and concatenate paths on Windows
Martin Willi
2014-06-04
1
-2
/
+3
*
utils: Provide a path_absolute() function to check path for non-relativeness
Martin Willi
2014-06-04
2
-0
/
+35
*
utils: Return plain drive letter as base/pathname for drive letters on Windows
Martin Willi
2014-06-04
1
-0
/
+9
*
utils: Support Windows path separators in path_basename/dirname
Martin Willi
2014-06-04
1
-9
/
+9
*
utils: Define a platform directory separator character used in paths
Martin Willi
2014-06-04
1
-0
/
+9
*
windows: Provide a getpass() implementation
Martin Willi
2014-06-04
2
-0
/
+65
*
chunk: On Windows, chunk_map() opens files in binary mode
Martin Willi
2014-06-04
1
-2
/
+7
*
windows: Don't redeclare inet_ntop/pton if already defined
Martin Willi
2014-06-04
1
-0
/
+4
*
windows: Check for existence of error codes before defining them
Martin Willi
2014-06-04
1
-0
/
+4
*
windows: Overload sleep() cancellable when it is defined in <unistd.h>
Martin Willi
2014-06-04
1
-1
/
+3
*
windows: Provide a close(2) that can close both file handles and sockets
Martin Willi
2014-06-04
2
-0
/
+22
*
chunk: Fallback to recv() on Windows chunk_from_fd() when operating on socket
Martin Willi
2014-06-04
1
-0
/
+6
*
windows: Don't use function macros to overload send/recv() and friends
Martin Willi
2014-06-04
1
-4
/
+4
*
windows: Provide a strndup(3) replacement
Martin Willi
2014-06-04
2
-0
/
+20
*
unit-tests: Uninline dlopen() and friends, make more dynamic, fix dlerror()
Martin Willi
2014-06-04
2
-58
/
+136
*
windows: Provide a cancellable usleep(), but with ms resolution only
Martin Willi
2014-06-04
2
-0
/
+18
*
windows: Add a sleep function acting as cancellation point
Martin Willi
2014-06-04
1
-0
/
+9
*
windows: Provide a sched_yield() implementation
Martin Willi
2014-06-04
2
-0
/
+10
*
windows: Provide a time_monotonic() based on GetTickCount64()
Martin Willi
2014-06-04
1
-0
/
+21
*
chunk: Don't depend on pthread directly
Martin Willi
2014-06-04
2
-13
/
+13
*
utils: Don't directly depend on pthread
Martin Willi
2014-06-04
1
-40
/
+53
*
strerror: Don't directly depend on pthread
Martin Willi
2014-06-04
3
-36
/
+98
*
windows: Provide a strdup variant safe when passing zero-length strings
Martin Willi
2014-06-04
1
-0
/
+15
*
stream: Separate TCP/Unix stream helpers from stream/service implementations
Martin Willi
2014-06-04
1
-0
/
+6
*
windows: Map WSAGetLastError() to errno failures in wrapped send/recv/from/to
Martin Willi
2014-06-04
1
-12
/
+80
*
windows: Add send/recv and sendto/recvfrom wrappers supporting MSG_DONTWAIT
Martin Willi
2014-06-04
2
-0
/
+135
*
windows: Implement socketpair() using TCP sockets
Martin Willi
2014-06-04
2
-0
/
+69
*
windows: Add utils_init/deinit functions to initialize Winsock2
Martin Willi
2014-06-04
4
-0
/
+75
*
windows: Provide a setenv() wrapper
Martin Willi
2014-06-04
1
-0
/
+12
[prev]
[next]