-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
networking changes for stack based multi-support (using existing fram…
…ework) additions for config additions for sup-groups support additions for uid/gid by name (in addition to number) ringbuffer default size increased lots of minor fixes This commit contains memory leaks in network handling
- Loading branch information
Jamie Beverly
committed
Dec 2, 2011
1 parent
1b3670d
commit 87e6a0d
Showing
23 changed files
with
512 additions
and
309 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
autoscan: warning: missing AC_PROG_CXX wanted by: | ||
ltmain.sh:677 | ||
ltmain.sh:1015 | ||
ltmain.sh:1022 | ||
ltmain.sh:1022 | ||
ltmain.sh:1022 | ||
ltmain.sh:1022 | ||
ltmain.sh:1031 | ||
ltmain.sh:1037 | ||
ltmain.sh:1037 | ||
ltmain.sh:1037 | ||
ltmain.sh:1037 | ||
autoscan: warning: missing AC_PROG_RANLIB wanted by: | ||
ltmain.sh:1601 |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
size_t | ||
strnlen(const char * restrict s, size_t maxlen) | ||
{ | ||
size_t n = 0; | ||
while( n <= maxlen && *(s+n++) != '\0'); | ||
|
||
return n; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# -*- Autoconf -*- | ||
# Process this file with autoconf to produce a configure script. | ||
|
||
AC_PREREQ([2.63]) | ||
AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS]) | ||
AC_CONFIG_SRCDIR([t.c]) | ||
AC_CONFIG_HEADERS([config.h]) | ||
|
||
# Checks for programs. | ||
AC_PROG_CXX | ||
AC_PROG_AWK | ||
AC_PROG_CC | ||
AC_PROG_CPP | ||
AC_PROG_INSTALL | ||
AC_PROG_LN_S | ||
AC_PROG_MAKE_SET | ||
AC_PROG_RANLIB | ||
|
||
# Checks for libraries. | ||
|
||
# Checks for header files. | ||
AC_CHECK_HEADERS([arpa/inet.h fcntl.h float.h stddef.h stdint.h stdlib.h string.h sys/file.h sys/socket.h sys/time.h unistd.h]) | ||
|
||
# Checks for typedefs, structures, and compiler characteristics. | ||
AC_HEADER_STDBOOL | ||
AC_TYPE_UID_T | ||
AC_C_INLINE | ||
AC_TYPE_INT16_T | ||
AC_TYPE_INT32_T | ||
AC_TYPE_INT8_T | ||
AC_TYPE_MODE_T | ||
AC_TYPE_PID_T | ||
AC_C_RESTRICT | ||
AC_TYPE_SIZE_T | ||
AC_TYPE_UINT16_T | ||
AC_TYPE_UINT32_T | ||
AC_TYPE_UINT8_T | ||
|
||
# Checks for library functions. | ||
AC_FUNC_FORK | ||
AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK | ||
AC_FUNC_REALLOC | ||
AC_FUNC_STRNLEN | ||
AC_CHECK_FUNCS([atexit gettimeofday memset mkdir rmdir select socket strcasecmp strchr strerror strncasecmp strstr strtoul]) | ||
|
||
AC_CONFIG_FILES([Makefile | ||
clients/Makefile | ||
controller/Makefile | ||
docs/latex/Makefile | ||
libupkeeper/Makefile | ||
libupkeeper/tests/Makefile]) | ||
AC_CONFIG_SUBDIRS([deps/sqlite | ||
deps/sqlite-3.7.3]) | ||
AC_OUTPUT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.