Compare commits
27 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bc043ec7cd | ||
|
|
e95a892fb7 | ||
|
|
564f09ad65 | ||
|
|
a33851b13d | ||
|
|
20e445bf94 | ||
|
|
133707ef57 | ||
|
|
62d14a9c52 | ||
|
|
ab9dda1c61 | ||
|
|
37e78eada1 | ||
|
|
5b4467acd5 | ||
|
|
ff2e2a3d4c | ||
|
|
a599b29b9d | ||
|
|
fc52f0e030 | ||
|
|
35bfefa717 | ||
|
|
845aefc941 | ||
|
|
4fcf3ffc83 | ||
|
|
ac39ebf38a | ||
|
|
3f777ce5e2 | ||
|
|
b0aa690cb4 | ||
|
|
fb11589bb0 | ||
|
|
03c4292eea | ||
|
|
ccaf755da3 | ||
|
|
cba0121574 | ||
|
|
166a105e33 | ||
|
|
a32ea42754 | ||
|
|
949b54fcdd | ||
|
|
b9005b1724 |
9
.gitignore
vendored
9
.gitignore
vendored
@@ -1,12 +1,18 @@
|
|||||||
*~
|
*~
|
||||||
*.[oa]
|
*.[oa]
|
||||||
|
*.lib
|
||||||
*.exe
|
*.exe
|
||||||
|
*.manifest
|
||||||
*.gch
|
*.gch
|
||||||
|
CMakeFiles/*
|
||||||
|
CMakeCache.txt
|
||||||
|
cmake_install.cmake
|
||||||
|
mod_*.dll
|
||||||
|
mod_*.exp
|
||||||
mod_*.so
|
mod_*.so
|
||||||
uhub-admin
|
uhub-admin
|
||||||
adcrush
|
adcrush
|
||||||
uhub
|
uhub
|
||||||
revision.h*
|
|
||||||
build-stamp
|
build-stamp
|
||||||
debian/files
|
debian/files
|
||||||
debian/uhub.debhelper.log
|
debian/uhub.debhelper.log
|
||||||
@@ -15,3 +21,4 @@ debian/uhub.postrm.debhelper
|
|||||||
debian/uhub.prerm.debhelper
|
debian/uhub.prerm.debhelper
|
||||||
debian/uhub.substvars
|
debian/uhub.substvars
|
||||||
uhub-passwd
|
uhub-passwd
|
||||||
|
src/version.h
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
|
|
||||||
GMAKE=gmake
|
|
||||||
|
|
||||||
all:
|
|
||||||
@${GMAKE} ${.TARGETS}
|
|
||||||
|
|
||||||
${.TARGETS}: all
|
|
||||||
|
|
||||||
170
CMakeLists.txt
Normal file
170
CMakeLists.txt
Normal file
@@ -0,0 +1,170 @@
|
|||||||
|
##
|
||||||
|
## Makefile for uhub
|
||||||
|
## Copyright (C) 2007-2012, Jan Vidar Krey <janvidar@extatic.org>
|
||||||
|
#
|
||||||
|
|
||||||
|
cmake_minimum_required (VERSION 2.8.3)
|
||||||
|
|
||||||
|
project (uhub)
|
||||||
|
|
||||||
|
set (UHUB_VERSION_MAJOR 0)
|
||||||
|
set (UHUB_VERSION_MINOR 4)
|
||||||
|
set (UHUB_VERSION_PATCH 1)
|
||||||
|
|
||||||
|
set (PROJECT_SOURCE_DIR "${CMAKE_SOURCE_DIR}/src")
|
||||||
|
|
||||||
|
option(RELEASE "Release build, debug build if disabled" ON)
|
||||||
|
option(LINK_SUPPORT "Allow hub linking" OFF)
|
||||||
|
option(SSL_SUPPORT "Enable SSL support" ON)
|
||||||
|
option(SQLITE_SUPPORT "Enable SQLite support" ON)
|
||||||
|
|
||||||
|
find_package(Git)
|
||||||
|
|
||||||
|
if (SSL_SUPPORT)
|
||||||
|
find_package(OpenSSL REQUIRED)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if (MSVC)
|
||||||
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
include_directories("${PROJECT_SOURCE_DIR}")
|
||||||
|
|
||||||
|
set (network_SOURCES
|
||||||
|
${PROJECT_SOURCE_DIR}/network/backend.c
|
||||||
|
${PROJECT_SOURCE_DIR}/network/connection.c
|
||||||
|
${PROJECT_SOURCE_DIR}/network/epoll.c
|
||||||
|
${PROJECT_SOURCE_DIR}/network/kqueue.c
|
||||||
|
${PROJECT_SOURCE_DIR}/network/select.c
|
||||||
|
${PROJECT_SOURCE_DIR}/network/timeout.c
|
||||||
|
${PROJECT_SOURCE_DIR}/network/timer.c
|
||||||
|
${PROJECT_SOURCE_DIR}/network/network.c
|
||||||
|
${PROJECT_SOURCE_DIR}/util/ipcalc.c
|
||||||
|
)
|
||||||
|
|
||||||
|
set (uhub_SOURCES
|
||||||
|
${PROJECT_SOURCE_DIR}/core/auth.c
|
||||||
|
${PROJECT_SOURCE_DIR}/core/command_parser.c
|
||||||
|
${PROJECT_SOURCE_DIR}/core/commands.c
|
||||||
|
${PROJECT_SOURCE_DIR}/core/config.c
|
||||||
|
${PROJECT_SOURCE_DIR}/core/eventqueue.c
|
||||||
|
${PROJECT_SOURCE_DIR}/core/hub.c
|
||||||
|
${PROJECT_SOURCE_DIR}/core/hubevent.c
|
||||||
|
${PROJECT_SOURCE_DIR}/core/inf.c
|
||||||
|
${PROJECT_SOURCE_DIR}/core/ioqueue.c
|
||||||
|
${PROJECT_SOURCE_DIR}/core/netevent.c
|
||||||
|
${PROJECT_SOURCE_DIR}/core/probe.c
|
||||||
|
${PROJECT_SOURCE_DIR}/core/route.c
|
||||||
|
${PROJECT_SOURCE_DIR}/core/user.c
|
||||||
|
${PROJECT_SOURCE_DIR}/core/usermanager.c
|
||||||
|
${PROJECT_SOURCE_DIR}/core/plugincallback.c
|
||||||
|
${PROJECT_SOURCE_DIR}/core/plugininvoke.c
|
||||||
|
${PROJECT_SOURCE_DIR}/core/pluginloader.c
|
||||||
|
)
|
||||||
|
|
||||||
|
set (adc_SOURCES
|
||||||
|
${PROJECT_SOURCE_DIR}/adc/message.c
|
||||||
|
${PROJECT_SOURCE_DIR}/adc/sid.c
|
||||||
|
)
|
||||||
|
|
||||||
|
set (utils_SOURCES
|
||||||
|
${PROJECT_SOURCE_DIR}/util/cbuffer.c
|
||||||
|
${PROJECT_SOURCE_DIR}/util/config_token.c
|
||||||
|
${PROJECT_SOURCE_DIR}/util/credentials.c
|
||||||
|
${PROJECT_SOURCE_DIR}/util/floodctl.c
|
||||||
|
${PROJECT_SOURCE_DIR}/util/getopt.c
|
||||||
|
${PROJECT_SOURCE_DIR}/util/list.c
|
||||||
|
${PROJECT_SOURCE_DIR}/util/log.c
|
||||||
|
${PROJECT_SOURCE_DIR}/util/memory.c
|
||||||
|
${PROJECT_SOURCE_DIR}/util/misc.c
|
||||||
|
${PROJECT_SOURCE_DIR}/util/rbtree.c
|
||||||
|
${PROJECT_SOURCE_DIR}/util/tiger.c
|
||||||
|
)
|
||||||
|
|
||||||
|
set (adcclient_SOURCES
|
||||||
|
${PROJECT_SOURCE_DIR}/tools/adcclient.c
|
||||||
|
)
|
||||||
|
|
||||||
|
add_library(adc STATIC ${adc_SOURCES})
|
||||||
|
add_library(network STATIC ${network_SOURCES})
|
||||||
|
add_library(utils STATIC ${utils_SOURCES})
|
||||||
|
|
||||||
|
|
||||||
|
add_dependencies(adc utils)
|
||||||
|
add_dependencies(network utils)
|
||||||
|
|
||||||
|
add_executable(uhub ${PROJECT_SOURCE_DIR}/core/main.c ${uhub_SOURCES} )
|
||||||
|
|
||||||
|
add_library(mod_example MODULE ${PROJECT_SOURCE_DIR}/plugins/mod_example.c ${utils_SOURCES})
|
||||||
|
add_library(mod_welcome MODULE ${PROJECT_SOURCE_DIR}/plugins/mod_welcome.c ${utils_SOURCES} ${network_SOURCES})
|
||||||
|
add_library(mod_logging MODULE ${PROJECT_SOURCE_DIR}/plugins/mod_logging.c ${utils_SOURCES} ${PROJECT_SOURCE_DIR}/adc/sid.c ${network_SOURCES})
|
||||||
|
add_library(mod_auth_simple MODULE ${PROJECT_SOURCE_DIR}/plugins/mod_auth_simple.c ${utils_SOURCES})
|
||||||
|
add_library(mod_chat_history MODULE ${PROJECT_SOURCE_DIR}/plugins/mod_chat_history.c ${utils_SOURCES})
|
||||||
|
add_library(mod_chat_only MODULE ${PROJECT_SOURCE_DIR}/plugins/mod_chat_only.c ${utils_SOURCES})
|
||||||
|
add_library(mod_topic MODULE ${PROJECT_SOURCE_DIR}/plugins/mod_topic.c ${utils_SOURCES})
|
||||||
|
|
||||||
|
if (SQLITE_SUPPORT)
|
||||||
|
add_library(mod_auth_sqlite MODULE ${PROJECT_SOURCE_DIR}/plugins/mod_auth_sqlite.c ${utils_SOURCES})
|
||||||
|
add_executable(uhub-passwd ${PROJECT_SOURCE_DIR}/tools/uhub-passwd.c ${PROJECT_SOURCE_DIR}/util/misc.c ${PROJECT_SOURCE_DIR}/util/memory.c ${PROJECT_SOURCE_DIR}/util/log.c ${PROJECT_SOURCE_DIR}/util/list.c)
|
||||||
|
|
||||||
|
target_link_libraries(mod_auth_sqlite sqlite3)
|
||||||
|
target_link_libraries(uhub-passwd sqlite3)
|
||||||
|
set_target_properties(mod_auth_sqlite PROPERTIES PREFIX "")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(WIN32)
|
||||||
|
target_link_libraries(uhub ws2_32)
|
||||||
|
target_link_libraries(mod_logging ws2_32)
|
||||||
|
target_link_libraries(mod_welcome ws2_32)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set_target_properties(
|
||||||
|
mod_example
|
||||||
|
mod_welcome
|
||||||
|
mod_logging
|
||||||
|
mod_auth_simple
|
||||||
|
mod_chat_history
|
||||||
|
mod_chat_only
|
||||||
|
mod_topic
|
||||||
|
PROPERTIES PREFIX "")
|
||||||
|
|
||||||
|
target_link_libraries(uhub ${CMAKE_DL_LIBS} adc network utils)
|
||||||
|
|
||||||
|
if(UNIX)
|
||||||
|
add_library(adcclient STATIC ${adcclient_SOURCES})
|
||||||
|
add_executable(uhub-admin ${PROJECT_SOURCE_DIR}/tools/admin.c ${adcclient_SOURCES})
|
||||||
|
target_link_libraries(uhub-admin adcclient adc network utils)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(GIT_FOUND)
|
||||||
|
execute_process(COMMAND ${GIT_EXECUTABLE} show -s --pretty=format:%h OUTPUT_VARIABLE UHUB_REVISION)
|
||||||
|
set (UHUB_GIT_VERSION "${UHUB_VERSION_MAJOR}.${UHUB_VERSION_MINOR}.${UHUB_VERSION_PATCH}-git-${UHUB_REVISION}")
|
||||||
|
else()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(OPENSSL_FOUND)
|
||||||
|
add_definitions(-DSSL_SUPPORT=1)
|
||||||
|
include_directories(${OPENSSL_INCLUDE_DIR})
|
||||||
|
target_link_libraries(uhub ${OPENSSL_LIBRARIES})
|
||||||
|
if(UNIX)
|
||||||
|
target_link_libraries(uhub-admin ${OPENSSL_LIBRARIES})
|
||||||
|
endif()
|
||||||
|
target_link_libraries(mod_welcome ${OPENSSL_LIBRARIES})
|
||||||
|
target_link_libraries(mod_logging ${OPENSSL_LIBRARIES})
|
||||||
|
endif()
|
||||||
|
|
||||||
|
configure_file ("${PROJECT_SOURCE_DIR}/version.h.in" "${PROJECT_SOURCE_DIR}/version.h")
|
||||||
|
|
||||||
|
mark_as_advanced(FORCE CMAKE_BUILD_TYPE)
|
||||||
|
if (RELEASE)
|
||||||
|
set(CMAKE_BUILD_TYPE Release)
|
||||||
|
else()
|
||||||
|
set(CMAKE_BUILD_TYPE Debug)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
378
GNUmakefile
378
GNUmakefile
@@ -1,378 +0,0 @@
|
|||||||
##
|
|
||||||
## Makefile for uhub (Use GNU make)
|
|
||||||
## Copyright (C) 2007-2010, Jan Vidar Krey <janvidar@extatic.org>
|
|
||||||
#
|
|
||||||
|
|
||||||
-include Makefile.private
|
|
||||||
|
|
||||||
CC = gcc
|
|
||||||
LD := $(CC)
|
|
||||||
MV := mv
|
|
||||||
RANLIB := ranlib
|
|
||||||
CFLAGS += -pipe -Wall
|
|
||||||
USE_SSL ?= YES
|
|
||||||
USE_PLUGINS ?= YES
|
|
||||||
USE_BIGENDIAN ?= AUTO
|
|
||||||
BITS ?= AUTO
|
|
||||||
SILENT ?= YES
|
|
||||||
TERSE ?= NO
|
|
||||||
STACK_PROTECT ?= NO
|
|
||||||
NEED_LIBDL ?= NO
|
|
||||||
|
|
||||||
ifeq ($(OS), Windows_NT)
|
|
||||||
WINDOWS ?= YES
|
|
||||||
OPSYS ?= Windows
|
|
||||||
else
|
|
||||||
OPSYS ?= $(shell uname)
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(OPSYS),SunOS)
|
|
||||||
LDLIBS += -lsocket -lnsl
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(OPSYS),Haiku)
|
|
||||||
LDLIBS += -lnetwork
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(OPSYS),Linux)
|
|
||||||
NEED_LIBDL = YES
|
|
||||||
endif
|
|
||||||
|
|
||||||
CFLAGS += -I./src/
|
|
||||||
|
|
||||||
ifeq ($(OPSYS),Windows)
|
|
||||||
USE_BIGENDIAN := NO
|
|
||||||
LDLIBS += -lws2_32
|
|
||||||
UHUB_CONF_DIR ?= c:/uhub/
|
|
||||||
UHUB_PREFIX ?= c:/uhub/
|
|
||||||
CFLAGS += -mno-cygwin
|
|
||||||
LDFLAGS += -mno-cygwin
|
|
||||||
BIN_EXT ?= .exe
|
|
||||||
else
|
|
||||||
DESTDIR ?= /
|
|
||||||
UHUB_CONF_DIR ?= $(DESTDIR)/etc/uhub
|
|
||||||
UHUB_PREFIX ?= $(DESTDIR)/usr/local
|
|
||||||
UHUB_MOD_DIR ?= $(DESTDIR)/var/lib/uhub
|
|
||||||
CFLAGS += -I/usr/local/include
|
|
||||||
LDFLAGS += -L/usr/local/lib
|
|
||||||
BIN_EXT ?=
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(SILENT),YES)
|
|
||||||
MSG_CC=@echo " CC:" $(notdir $<) &&
|
|
||||||
MSG_LD=@echo " LD:" $(notdir $@) &&
|
|
||||||
MSG_AR=@echo " AR:" $(notdir $@) &&
|
|
||||||
else
|
|
||||||
MSG_CC=
|
|
||||||
MSG_LD=
|
|
||||||
MSG_AR=
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(TERSE), YES)
|
|
||||||
MSG_CC=@
|
|
||||||
MSG_LD=@
|
|
||||||
MSG_AR=@
|
|
||||||
MSG_CLEAN=-n ""
|
|
||||||
else
|
|
||||||
MSG_CLEAN="Clean as a whistle"
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(RELEASE),YES)
|
|
||||||
CFLAGS += -O3 -DNDEBUG
|
|
||||||
else
|
|
||||||
CFLAGS += -ggdb -DDEBUG
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(STACK_PROTECT),YES)
|
|
||||||
CFLAGS += -fstack-protector-all
|
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
ifeq ($(PROFILING),YES)
|
|
||||||
CFLAGS += -pg
|
|
||||||
LDFLAGS += -pg
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(FUNCTRACE),YES)
|
|
||||||
CFLAGS += -finstrument-functions
|
|
||||||
CFLAGS += -DDEBUG_FUNCTION_TRACE
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifneq ($(BITS), AUTO)
|
|
||||||
ifeq ($(BITS), 64)
|
|
||||||
CFLAGS += -m64
|
|
||||||
LDFLAGS += -m64
|
|
||||||
else
|
|
||||||
ifeq ($(BITS), 32)
|
|
||||||
CFLAGS += -m32
|
|
||||||
LDFLAGS += -m32
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(USE_BIGENDIAN),AUTO)
|
|
||||||
ifeq ($(shell perl -e 'print pack("L", 0x554E4958)'),UNIX)
|
|
||||||
CFLAGS += -DARCH_BIGENDIAN
|
|
||||||
endif
|
|
||||||
else
|
|
||||||
ifeq ($(USE_BIGENDIAN),YES)
|
|
||||||
CFLAGS += -DARCH_BIGENDIAN
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(USE_SSL),YES)
|
|
||||||
CFLAGS += -DSSL_SUPPORT
|
|
||||||
LDLIBS += -lssl -lcrypto
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(NEED_LIBDL),YES)
|
|
||||||
LDLIBS += -ldl
|
|
||||||
endif
|
|
||||||
|
|
||||||
GIT_VERSION=$(shell git describe --tags 2>/dev/null || echo "")
|
|
||||||
GIT_REVISION=$(shell git show --abbrev-commit 2>/dev/null | head -n 1 | cut -f 2 -d " " || echo "")
|
|
||||||
OLD_REVISION=$(shell grep GIT_REVISION revision.h 2>/dev/null | cut -f 3 -d " " | tr -d "\"")
|
|
||||||
|
|
||||||
# Sources
|
|
||||||
libuhub_SOURCES := \
|
|
||||||
src/core/auth.c \
|
|
||||||
src/core/command_parser.c \
|
|
||||||
src/core/commands.c \
|
|
||||||
src/core/config.c \
|
|
||||||
src/core/eventqueue.c \
|
|
||||||
src/core/hub.c \
|
|
||||||
src/core/hubevent.c \
|
|
||||||
src/core/hubio.c \
|
|
||||||
src/core/inf.c \
|
|
||||||
src/core/netevent.c \
|
|
||||||
src/core/probe.c \
|
|
||||||
src/core/route.c \
|
|
||||||
src/core/user.c \
|
|
||||||
src/core/usermanager.c \
|
|
||||||
src/core/plugincallback.c \
|
|
||||||
src/core/plugininvoke.c \
|
|
||||||
src/core/pluginloader.c \
|
|
||||||
src/network/backend.c \
|
|
||||||
src/network/connection.c \
|
|
||||||
src/network/epoll.c \
|
|
||||||
src/network/kqueue.c \
|
|
||||||
src/network/select.c \
|
|
||||||
src/network/timeout.c \
|
|
||||||
src/network/timer.c
|
|
||||||
|
|
||||||
|
|
||||||
libadc_common_SOURCES := \
|
|
||||||
src/adc/message.c \
|
|
||||||
src/adc/sid.c
|
|
||||||
|
|
||||||
libutils_SOURCES := \
|
|
||||||
src/util/cbuffer.c \
|
|
||||||
src/util/config_token.c \
|
|
||||||
src/util/credentials.c \
|
|
||||||
src/util/floodctl.c \
|
|
||||||
src/util/ipcalc.c \
|
|
||||||
src/util/list.c \
|
|
||||||
src/util/log.c \
|
|
||||||
src/util/memory.c \
|
|
||||||
src/util/misc.c \
|
|
||||||
src/network/network.c \
|
|
||||||
src/util/rbtree.c \
|
|
||||||
src/util/tiger.c
|
|
||||||
|
|
||||||
libadc_client_SOURCES := \
|
|
||||||
src/tools/adcclient.c
|
|
||||||
|
|
||||||
uhub_SOURCES := src/core/main.c
|
|
||||||
|
|
||||||
uhub-passwd_SOURCES := src/tools/uhub-passwd.c
|
|
||||||
uhub-passwd_LIBS := -lsqlite3
|
|
||||||
|
|
||||||
adcrush_SOURCES := src/tools/adcrush.c
|
|
||||||
|
|
||||||
admin_SOURCES := src/tools/admin.c
|
|
||||||
|
|
||||||
autotest_SOURCES := \
|
|
||||||
autotest/test_commands.tcc \
|
|
||||||
autotest/test_credentials.tcc \
|
|
||||||
autotest/test_eventqueue.tcc \
|
|
||||||
autotest/test_hub.tcc \
|
|
||||||
autotest/test_inf.tcc \
|
|
||||||
autotest/test_ipfilter.tcc \
|
|
||||||
autotest/test_list.tcc \
|
|
||||||
autotest/test_memory.tcc \
|
|
||||||
autotest/test_message.tcc \
|
|
||||||
autotest/test_misc.tcc \
|
|
||||||
autotest/test_sid.tcc \
|
|
||||||
autotest/test_tiger.tcc \
|
|
||||||
autotest/test_timer.tcc \
|
|
||||||
autotest/test_tokenizer.tcc \
|
|
||||||
autotest/test_usermanager.tcc
|
|
||||||
|
|
||||||
autotest_OBJECTS = autotest.o
|
|
||||||
|
|
||||||
# Plugin targets:
|
|
||||||
plugin_example_SOURCES := src/plugins/mod_example.c
|
|
||||||
plugin_example_TARGET := mod_example.so
|
|
||||||
|
|
||||||
plugin_welcome_SOURCES := src/plugins/mod_welcome.c
|
|
||||||
plugin_welcome_TARGET := mod_welcome.so
|
|
||||||
|
|
||||||
plugin_logging_SOURCES := src/plugins/mod_logging.c
|
|
||||||
plugin_logging_TARGET := mod_logging.so
|
|
||||||
|
|
||||||
plugin_auth_SOURCES := src/plugins/mod_auth_simple.c
|
|
||||||
plugin_auth_TARGET := mod_auth_simple.so
|
|
||||||
|
|
||||||
plugin_auth_sqlite_SOURCES := src/plugins/mod_auth_sqlite.c
|
|
||||||
plugin_auth_sqlite_TARGET := mod_auth_sqlite.so
|
|
||||||
plugin_auth_sqlite_LIBS := -lsqlite3
|
|
||||||
|
|
||||||
plugin_chat_history_SOURCES := src/plugins/mod_chat_history.c
|
|
||||||
plugin_chat_history_TARGET := mod_chat_history.so
|
|
||||||
|
|
||||||
plugin_chat_only_SOURCES := src/plugins/mod_chat_only.c
|
|
||||||
plugin_chat_only_TARGET := mod_chat_only.so
|
|
||||||
|
|
||||||
plugin_topic_SOURCES := src/plugins/mod_topic.c
|
|
||||||
plugin_topic_TARGET := mod_topic.so
|
|
||||||
|
|
||||||
# Source to objects
|
|
||||||
libuhub_OBJECTS := $(libuhub_SOURCES:.c=.o)
|
|
||||||
libutils_OBJECTS := $(libutils_SOURCES:.c=.o)
|
|
||||||
libadc_client_OBJECTS := $(libadc_client_SOURCES:.c=.o)
|
|
||||||
libadc_common_OBJECTS := $(libadc_common_SOURCES:.c=.o)
|
|
||||||
|
|
||||||
uhub_OBJECTS := $(uhub_SOURCES:.c=.o)
|
|
||||||
uhub-passwd_OBJECTS := $(uhub-passwd_SOURCES:.c=.o)
|
|
||||||
adcrush_OBJECTS := $(adcrush_SOURCES:.c=.o)
|
|
||||||
admin_OBJECTS := $(admin_SOURCES:.c=.o)
|
|
||||||
|
|
||||||
all_plugins := \
|
|
||||||
$(plugin_example_TARGET) \
|
|
||||||
$(plugin_logging_TARGET) \
|
|
||||||
$(plugin_auth_TARGET) \
|
|
||||||
$(plugin_auth_sqlite_TARGET) \
|
|
||||||
$(plugin_welcome_TARGET) \
|
|
||||||
$(plugin_chat_history_TARGET) \
|
|
||||||
$(plugin_chat_only_TARGET) \
|
|
||||||
$(plugin_topic_TARGET)
|
|
||||||
|
|
||||||
all_OBJECTS := \
|
|
||||||
$(libuhub_OBJECTS) \
|
|
||||||
$(uhub_OBJECTS) \
|
|
||||||
$(libutils_OBJECTS) \
|
|
||||||
$(adcrush_OBJECTS) \
|
|
||||||
$(autotest_OBJECTS) \
|
|
||||||
$(admin_OBJECTS) \
|
|
||||||
$(libadc_common_OBJECTS) \
|
|
||||||
$(libadc_client_OBJECTS)
|
|
||||||
|
|
||||||
all_OBJECTS += $(all_plugins)
|
|
||||||
|
|
||||||
uhub_BINARY=uhub$(BIN_EXT)
|
|
||||||
uhub-passwd_BINARY=uhub-passwd$(BIN_EXT)
|
|
||||||
adcrush_BINARY=adcrush$(BIN_EXT)
|
|
||||||
admin_BINARY=uhub-admin$(BIN_EXT)
|
|
||||||
autotest_BINARY=autotest/test$(BIN_EXT)
|
|
||||||
|
|
||||||
|
|
||||||
.PHONY: revision.h.tmp all plugins
|
|
||||||
|
|
||||||
%.o: %.c version.h revision.h
|
|
||||||
$(MSG_CC) $(CC) -fPIC -c $(CFLAGS) -o $@ $<
|
|
||||||
|
|
||||||
|
|
||||||
#%.so: %.c
|
|
||||||
# $(MSG_CC) $(CC) -shared -fPIC -o $@ $^ $(CFLAGS)
|
|
||||||
|
|
||||||
|
|
||||||
all: $(uhub_BINARY) $(uhub-passwd_BINARY) plugins
|
|
||||||
|
|
||||||
plugins: $(uhub_BINARY) $(all_plugins)
|
|
||||||
|
|
||||||
$(plugin_auth_TARGET): $(plugin_auth_SOURCES) $(libutils_OBJECTS)
|
|
||||||
$(MSG_CC) $(CC) -shared -fPIC -o $@ $^ $(CFLAGS)
|
|
||||||
|
|
||||||
$(plugin_auth_sqlite_TARGET): $(plugin_auth_sqlite_SOURCES) $(libutils_OBJECTS)
|
|
||||||
$(MSG_CC) $(CC) -shared -fPIC -o $@ $^ $(CFLAGS) $(LDFLAGS) $(plugin_auth_sqlite_LIBS)
|
|
||||||
|
|
||||||
$(plugin_example_TARGET): $(plugin_example_SOURCES) $(libutils_OBJECTS)
|
|
||||||
$(MSG_CC) $(CC) -shared -fPIC -o $@ $^ $(CFLAGS)
|
|
||||||
|
|
||||||
$(plugin_logging_TARGET): $(plugin_logging_SOURCES) $(libutils_OBJECTS) $(libadc_common_OBJECTS) src/network/network.o
|
|
||||||
$(MSG_CC) $(CC) -shared -fPIC -o $@ $^ $(CFLAGS)
|
|
||||||
|
|
||||||
$(plugin_chat_history_TARGET): $(plugin_chat_history_SOURCES) $(libutils_OBJECTS)
|
|
||||||
$(MSG_CC) $(CC) -shared -fPIC -o $@ $^ $(CFLAGS)
|
|
||||||
|
|
||||||
$(plugin_chat_only_TARGET): $(plugin_chat_only_SOURCES) $(libutils_OBJECTS)
|
|
||||||
$(MSG_CC) $(CC) -shared -fPIC -o $@ $^ $(CFLAGS)
|
|
||||||
|
|
||||||
$(plugin_welcome_TARGET): $(plugin_welcome_SOURCES) $(libutils_OBJECTS)
|
|
||||||
$(MSG_CC) $(CC) -shared -fPIC -o $@ $^ $(CFLAGS)
|
|
||||||
|
|
||||||
$(plugin_topic_TARGET): $(plugin_topic_SOURCES) $(libutils_OBJECTS)
|
|
||||||
$(MSG_CC) $(CC) -shared -fPIC -o $@ $^ $(CFLAGS)
|
|
||||||
|
|
||||||
|
|
||||||
$(adcrush_BINARY): $(adcrush_OBJECTS) $(libuhub_OBJECTS) $(libutils_OBJECTS) $(libadc_common_OBJECTS) $(libadc_client_OBJECTS)
|
|
||||||
$(MSG_LD) $(CC) -o $@ $^ $(LDFLAGS) $(LDLIBS)
|
|
||||||
|
|
||||||
$(admin_BINARY): $(admin_OBJECTS) $(libuhub_OBJECTS) $(libutils_OBJECTS) $(libadc_common_OBJECTS) $(libadc_client_OBJECTS)
|
|
||||||
$(MSG_LD) $(CC) -o $@ $^ $(LDFLAGS) $(LDLIBS)
|
|
||||||
|
|
||||||
$(uhub_BINARY): $(uhub_OBJECTS) $(libuhub_OBJECTS) $(libutils_OBJECTS) $(libadc_common_OBJECTS)
|
|
||||||
$(MSG_LD) $(CC) -o $@ $^ $(LDFLAGS) $(LDLIBS)
|
|
||||||
|
|
||||||
$(uhub-passwd_BINARY): $(uhub-passwd_OBJECTS) src/util/misc.o src/util/list.o src/util/memory.o src/util/log.o
|
|
||||||
$(MSG_LD) $(CC) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(uhub-passwd_LIBS)
|
|
||||||
|
|
||||||
|
|
||||||
autotest.c: $(autotest_SOURCES)
|
|
||||||
$(shell exotic --standalone $(autotest_SOURCES) > $@)
|
|
||||||
|
|
||||||
revision.h.tmp:
|
|
||||||
@rm -f $@
|
|
||||||
@echo "/* AUTOGENERATED FILE - DO NOT EDIT */" > $@
|
|
||||||
@if [ -n '$(GIT_VERSION)' ]; then echo \#define GIT_VERSION \"$(GIT_VERSION)\" >> $@; fi
|
|
||||||
@if [ -n '$(GIT_REVISION)' ]; then echo \#define GIT_REVISION \"$(GIT_REVISION)\" >> $@; fi
|
|
||||||
|
|
||||||
version.h: revision.h
|
|
||||||
|
|
||||||
revision.h: revision.h.tmp
|
|
||||||
@if [ '$(GIT_REVISION)' != '$(OLD_REVISION)' ]; then cp $@.tmp $@; fi
|
|
||||||
@if [ ! -f $@ ]; then cp $@.tmp $@; fi
|
|
||||||
|
|
||||||
$(autotest_OBJECTS): autotest.c
|
|
||||||
$(MSG_CC) $(CC) -c $(CFLAGS) -Isrc -o $@ $<
|
|
||||||
|
|
||||||
$(autotest_BINARY): $(autotest_OBJECTS) $(libuhub_OBJECTS) $(libutils_OBJECTS) $(libadc_common_OBJECTS) $(libadc_client_OBJECTS)
|
|
||||||
$(MSG_LD) $(CC) -o $@ $^ $(LDFLAGS) $(LDLIBS)
|
|
||||||
|
|
||||||
autotest: $(autotest_BINARY)
|
|
||||||
@./$(autotest_BINARY) -s -f
|
|
||||||
|
|
||||||
ifeq ($(WINDOWS),YES)
|
|
||||||
install:
|
|
||||||
@echo "Cannot install automatically on windows."
|
|
||||||
else
|
|
||||||
install: all
|
|
||||||
@echo Copying $(uhub_BINARY) to $(UHUB_PREFIX)/bin/
|
|
||||||
@cp $(uhub_BINARY) $(UHUB_PREFIX)/bin/
|
|
||||||
@cp $(uhub-passwd_BINARY) $(UHUB_PREFIX)/bin/
|
|
||||||
@if [ ! -d $(UHUB_CONF_DIR) ]; then echo Creating $(UHUB_CONF_DIR); mkdir -p $(UHUB_CONF_DIR); fi
|
|
||||||
@if [ ! -f $(UHUB_CONF_DIR)/uhub.conf ]; then cp doc/uhub.conf $(UHUB_CONF_DIR); fi
|
|
||||||
@if [ ! -f $(UHUB_CONF_DIR)/rules.txt ]; then cp doc/rules.txt $(UHUB_CONF_DIR); fi
|
|
||||||
@if [ ! -f $(UHUB_CONF_DIR)/plugins.conf ]; then cp doc/plugins.conf $(UHUB_CONF_DIR); fi
|
|
||||||
@if [ ! -d $(UHUB_MOD_DIR) ]; then echo Creating $(UHUB_MOD_DIR); mkdir -p $(UHUB_MOD_DIR); fi
|
|
||||||
@cp -f mod_*.so $(UHUB_MOD_DIR)
|
|
||||||
@touch $(UHUB_CONF_DIR)/motd.txt
|
|
||||||
@echo done.
|
|
||||||
endif
|
|
||||||
|
|
||||||
dist-clean:
|
|
||||||
@rm -rf $(all_OBJECTS) *~ core
|
|
||||||
|
|
||||||
clean:
|
|
||||||
@rm -rf $(libuhub_OBJECTS) *~ core $(uhub_BINARY) $(uhub-passwd_BINARY) $(admin_BINARY) $(autotest_BINARY) $(adcrush_BINARY) $(all_OBJECTS) $(all_plugins) autotest.c revision.h revision.h.tmp && \
|
|
||||||
echo $(MSG_CLEAN)
|
|
||||||
@@ -19,7 +19,8 @@ EXO_TEST(setup, {
|
|||||||
hub = hub_malloc_zero(sizeof(struct hub_info));
|
hub = hub_malloc_zero(sizeof(struct hub_info));
|
||||||
cbase = command_initialize(hub);
|
cbase = command_initialize(hub);
|
||||||
hub->commands = cbase;
|
hub->commands = cbase;
|
||||||
return cbase && hub && uman_init(hub) == 0;
|
hub->users = uman_init();
|
||||||
|
return cbase && hub && hub->users;
|
||||||
});
|
});
|
||||||
|
|
||||||
static int test_handler(struct command_base* cbase, struct hub_user* user, struct hub_command* hcmd)
|
static int test_handler(struct command_base* cbase, struct hub_user* user, struct hub_command* hcmd)
|
||||||
@@ -127,7 +128,7 @@ EXO_TEST(command_number_3, { return verify("!test3 -12", cmd_status_ok); });
|
|||||||
|
|
||||||
EXO_TEST(command_user_1, { return verify("!test4 tester", cmd_status_arg_nick); });
|
EXO_TEST(command_user_1, { return verify("!test4 tester", cmd_status_arg_nick); });
|
||||||
EXO_TEST(command_user_2, { return verify("!test5 3AGHMAASJA2RFNM22AA6753V7B7DYEPNTIWHBAY", cmd_status_arg_cid); });
|
EXO_TEST(command_user_2, { return verify("!test5 3AGHMAASJA2RFNM22AA6753V7B7DYEPNTIWHBAY", cmd_status_arg_cid); });
|
||||||
EXO_TEST(command_user_3, { return uman_add(hub, &user) == 0; });
|
EXO_TEST(command_user_3, { return uman_add(hub->users, &user) == 0; });
|
||||||
EXO_TEST(command_user_4, { return verify("!test4 tester", cmd_status_ok); });
|
EXO_TEST(command_user_4, { return verify("!test4 tester", cmd_status_ok); });
|
||||||
EXO_TEST(command_user_5, { return verify("!test5 3AGHMAASJA2RFNM22AA6753V7B7DYEPNTIWHBAY", cmd_status_ok); });
|
EXO_TEST(command_user_5, { return verify("!test5 3AGHMAASJA2RFNM22AA6753V7B7DYEPNTIWHBAY", cmd_status_ok); });
|
||||||
|
|
||||||
@@ -225,7 +226,7 @@ EXO_TEST(command_argument_cred_6, {
|
|||||||
|
|
||||||
#undef SETUP_COMMAND
|
#undef SETUP_COMMAND
|
||||||
|
|
||||||
EXO_TEST(command_user_destroy, { return uman_remove(hub, &user) == 0; });
|
EXO_TEST(command_user_destroy, { return uman_remove(hub->users, &user) == 0; });
|
||||||
|
|
||||||
EXO_TEST(command_destroy, {
|
EXO_TEST(command_destroy, {
|
||||||
|
|
||||||
@@ -241,3 +242,10 @@ EXO_TEST(command_destroy, {
|
|||||||
DEL_TEST(c_test7);
|
DEL_TEST(c_test7);
|
||||||
return 1;
|
return 1;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
EXO_TEST(cleanup, {
|
||||||
|
uman_shutdown(hub->users);
|
||||||
|
command_shutdown(hub->commands);
|
||||||
|
hub_free(hub);
|
||||||
|
return 1;
|
||||||
|
});
|
||||||
|
|||||||
@@ -2,32 +2,19 @@
|
|||||||
|
|
||||||
#define MAX_USERS 64
|
#define MAX_USERS 64
|
||||||
|
|
||||||
static struct hub_info um_hub;
|
static struct hub_user_manager* uman = 0;
|
||||||
static struct hub_user um_user[MAX_USERS];
|
static struct hub_user um_user[MAX_USERS];
|
||||||
// static struct net_connection um_cons[MAX_USERS];
|
|
||||||
|
|
||||||
EXO_TEST(um_test_setup, {
|
|
||||||
int i = 0;
|
|
||||||
memset(&um_hub, 0, sizeof(um_hub));
|
|
||||||
|
|
||||||
for (i = 0; i < MAX_USERS; i++)
|
|
||||||
{
|
|
||||||
/* memset(&um_cons[i], 0, sizeof(struct net_connection));
|
|
||||||
um_cons[i].sd = -1;
|
|
||||||
|
|
||||||
memset(&um_user[i], 0, sizeof(struct hub_user));
|
|
||||||
um_user[i].id.sid = i+1;
|
|
||||||
um_user[i].connection = &um_cons[i];*/
|
|
||||||
}
|
|
||||||
return 1;
|
|
||||||
});
|
|
||||||
|
|
||||||
EXO_TEST(um_init_1, {
|
EXO_TEST(um_init_1, {
|
||||||
return uman_init(0) != 0;
|
sid_t s;
|
||||||
});
|
uman = uman_init();
|
||||||
|
|
||||||
EXO_TEST(um_init_2, {
|
for (s = 0; s < MAX_USERS; s++)
|
||||||
return uman_init(&um_hub) == 0;
|
{
|
||||||
|
memset(&um_user[s], 0, sizeof(struct hub_user));
|
||||||
|
um_user[s].id.sid = s;
|
||||||
|
}
|
||||||
|
return !!uman;
|
||||||
});
|
});
|
||||||
|
|
||||||
EXO_TEST(um_shutdown_1, {
|
EXO_TEST(um_shutdown_1, {
|
||||||
@@ -35,32 +22,29 @@ EXO_TEST(um_shutdown_1, {
|
|||||||
});
|
});
|
||||||
|
|
||||||
EXO_TEST(um_shutdown_2, {
|
EXO_TEST(um_shutdown_2, {
|
||||||
return uman_shutdown(&um_hub) == 0;
|
return uman_shutdown(uman) == 0;
|
||||||
});
|
});
|
||||||
|
|
||||||
EXO_TEST(um_shutdown_3, {
|
EXO_TEST(um_init_2, {
|
||||||
return uman_shutdown(&um_hub) == -1;
|
uman = uman_init();
|
||||||
});
|
return !!uman;
|
||||||
|
|
||||||
EXO_TEST(um_init_3, {
|
|
||||||
return uman_init(&um_hub) == 0;
|
|
||||||
});
|
});
|
||||||
|
|
||||||
EXO_TEST(um_add_1, {
|
EXO_TEST(um_add_1, {
|
||||||
return uman_add(&um_hub, &um_user[0]) == 0;
|
return uman_add(uman, &um_user[0]) == 0;
|
||||||
});
|
});
|
||||||
|
|
||||||
EXO_TEST(um_size_1, {
|
EXO_TEST(um_size_1, {
|
||||||
return hub_get_user_count(&um_hub) == 1;
|
return uman->count == 1;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
EXO_TEST(um_remove_1, {
|
EXO_TEST(um_remove_1, {
|
||||||
return uman_remove(&um_hub, &um_user[0]) == 0;
|
return uman_remove(uman, &um_user[0]) == 0;
|
||||||
});
|
});
|
||||||
|
|
||||||
EXO_TEST(um_size_2, {
|
EXO_TEST(um_size_2, {
|
||||||
return hub_get_user_count(&um_hub) == 0;
|
return uman->count == 0;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
@@ -68,25 +52,21 @@ EXO_TEST(um_add_2, {
|
|||||||
int i;
|
int i;
|
||||||
for (i = 0; i < MAX_USERS; i++)
|
for (i = 0; i < MAX_USERS; i++)
|
||||||
{
|
{
|
||||||
if (uman_add(&um_hub, &um_user[i]) != 0)
|
if (uman_add(uman, &um_user[i]) != 0)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
return 1;
|
return 1;
|
||||||
});
|
});
|
||||||
|
|
||||||
EXO_TEST(um_size_3, {
|
EXO_TEST(um_size_3, {
|
||||||
return hub_get_user_count(&um_hub) == MAX_USERS;
|
return uman->count == MAX_USERS;
|
||||||
});
|
|
||||||
|
|
||||||
EXO_TEST(um_add_3, {
|
|
||||||
return uman_add(&um_hub, &um_user[5]) != 0;
|
|
||||||
});
|
});
|
||||||
|
|
||||||
EXO_TEST(um_remove_2, {
|
EXO_TEST(um_remove_2, {
|
||||||
int i;
|
int i;
|
||||||
for (i = 0; i < MAX_USERS; i++)
|
for (i = 0; i < MAX_USERS; i++)
|
||||||
{
|
{
|
||||||
if (uman_remove(&um_hub, &um_user[i]) != 0)
|
if (uman_remove(uman, &um_user[i]) != 0)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
return 1;
|
return 1;
|
||||||
@@ -105,5 +85,5 @@ EXO_TEST(um_remove_2, {
|
|||||||
|
|
||||||
/* Last test */
|
/* Last test */
|
||||||
EXO_TEST(um_shutdown_4, {
|
EXO_TEST(um_shutdown_4, {
|
||||||
return uman_shutdown(&um_hub) == 0;
|
return uman_shutdown(uman) == 0;
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -31,7 +31,8 @@ fi
|
|||||||
# Check that networking is up.
|
# Check that networking is up.
|
||||||
[ ${NETWORKING} = "no" ] && exit 1
|
[ ${NETWORKING} = "no" ] && exit 1
|
||||||
|
|
||||||
# Check that uhub.conf exists.
|
# Check that bin and uhub.conf exists.
|
||||||
|
[ -f $UHUBBINFILE ] || exit 6
|
||||||
[ -f /etc/uhub/uhub.conf ] || exit 6
|
[ -f /etc/uhub/uhub.conf ] || exit 6
|
||||||
|
|
||||||
RETVAL=0
|
RETVAL=0
|
||||||
@@ -40,7 +41,7 @@ RETVAL=0
|
|||||||
start() {
|
start() {
|
||||||
KIND="Uhub"
|
KIND="Uhub"
|
||||||
echo -n $"Starting $KIND services: "
|
echo -n $"Starting $KIND services: "
|
||||||
daemon uhub $UHUBOPTIONS
|
daemon $UHUBBINFILE $UHUBOPTIONS
|
||||||
RETVAL=$?
|
RETVAL=$?
|
||||||
echo ""
|
echo ""
|
||||||
return $RETVAL
|
return $RETVAL
|
||||||
@@ -49,7 +50,7 @@ start() {
|
|||||||
stop() {
|
stop() {
|
||||||
KIND="Uhub"
|
KIND="Uhub"
|
||||||
echo -n $"Shutting down $KIND services: "
|
echo -n $"Shutting down $KIND services: "
|
||||||
killproc uhub
|
killproc $UHUBBINFILE
|
||||||
RETVAL=$?
|
RETVAL=$?
|
||||||
echo ""
|
echo ""
|
||||||
return $RETVAL
|
return $RETVAL
|
||||||
@@ -77,7 +78,7 @@ relog() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
rhstatus() {
|
rhstatus() {
|
||||||
status uhub
|
status $UHUBBINFILE
|
||||||
RETVAL=$?
|
RETVAL=$?
|
||||||
if [ $RETVAL -ne 0 ] ; then
|
if [ $RETVAL -ne 0 ] ; then
|
||||||
return $RETVAL
|
return $RETVAL
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
# locate bin file
|
||||||
|
UHUBBINFILE=/usr/bin/uhub
|
||||||
|
|
||||||
# Options to UHUB
|
# Options to UHUB
|
||||||
# -v Verbose mode. Add more -v's for higher verbosity.
|
# -v Verbose mode. Add more -v's for higher verbosity.
|
||||||
# -q Quiet mode - no output
|
# -q Quiet mode - no output
|
||||||
|
|||||||
28
doc/upstart/etc/init/uhub.conf
Normal file
28
doc/upstart/etc/init/uhub.conf
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
# uHub - a lightweight but high-performance hub for the ADC
|
||||||
|
# peer-to-peer protocol.
|
||||||
|
|
||||||
|
description "uHub - High performance ADC peer-to-peer hub"
|
||||||
|
|
||||||
|
# Start and stop conditions.
|
||||||
|
start on filesystem or runlevel [2345]
|
||||||
|
stop on runlevel [!2345]
|
||||||
|
|
||||||
|
# Allow the service to respawn, but if its happening too often
|
||||||
|
# (10 times in 5 seconds) theres a problem and we should stop trying.
|
||||||
|
respawn
|
||||||
|
respawn limit 10 5
|
||||||
|
|
||||||
|
# The program is going to fork, and upstart needs to know this
|
||||||
|
# so it can track the change in PID.
|
||||||
|
expect fork
|
||||||
|
|
||||||
|
# Set the mode the process should create files in.
|
||||||
|
umask 022
|
||||||
|
|
||||||
|
# Make sure the log folder exists.
|
||||||
|
pre-start script
|
||||||
|
mkdir -p -m0755 /var/log/uhub
|
||||||
|
end script
|
||||||
|
|
||||||
|
# Command to run it.
|
||||||
|
exec /usr/bin/uhub -f -u uhub -g uhub -l /var/log/uhub/uhub.log -c /etc/uhub/uhub.conf
|
||||||
@@ -33,7 +33,7 @@ typedef uint32_t fourcc_t;
|
|||||||
#define FOURCC(a,b,c,d) (fourcc_t) ((a << 24) | (b << 16) | (c << 8) | d)
|
#define FOURCC(a,b,c,d) (fourcc_t) ((a << 24) | (b << 16) | (c << 8) | d)
|
||||||
|
|
||||||
/* default welcome protocol support message, as sent by this server */
|
/* default welcome protocol support message, as sent by this server */
|
||||||
#define ADC_PROTO_SUPPORT "ADBASE ADTIGR ADPING"
|
#define ADC_PROTO_SUPPORT "ADBASE ADTIGR ADPING ADUCMD"
|
||||||
|
|
||||||
/* Server sent commands */
|
/* Server sent commands */
|
||||||
#define ADC_CMD_ISID FOURCC('I','S','I','D')
|
#define ADC_CMD_ISID FOURCC('I','S','I','D')
|
||||||
@@ -93,6 +93,15 @@ typedef uint32_t fourcc_t;
|
|||||||
/* Extension messages */
|
/* Extension messages */
|
||||||
#define ADC_CMD_HCHK FOURCC('H','C','H','K')
|
#define ADC_CMD_HCHK FOURCC('H','C','H','K')
|
||||||
|
|
||||||
|
/* UCMD Extension */
|
||||||
|
#define ADC_CMD_BCMD FOURCC('B','C','M','D')
|
||||||
|
#define ADC_CMD_DCMD FOURCC('D','C','M','D')
|
||||||
|
#define ADC_CMD_ECMD FOURCC('E','C','M','D')
|
||||||
|
#define ADC_CMD_FCMD FOURCC('F','C','M','D')
|
||||||
|
#define ADC_CMD_HCMD FOURCC('H','C','M','D')
|
||||||
|
#define ADC_CMD_ICMD FOURCC('I','C','M','D')
|
||||||
|
|
||||||
|
|
||||||
#define ADC_INF_FLAG_IPV4_ADDR "I4" /* ipv4 address */
|
#define ADC_INF_FLAG_IPV4_ADDR "I4" /* ipv4 address */
|
||||||
#define ADC_INF_FLAG_IPV6_ADDR "I6" /* ipv6 address */
|
#define ADC_INF_FLAG_IPV6_ADDR "I6" /* ipv6 address */
|
||||||
#define ADC_INF_FLAG_IPV4_UDP_PORT "U4" /* port number */
|
#define ADC_INF_FLAG_IPV4_UDP_PORT "U4" /* port number */
|
||||||
|
|||||||
@@ -63,6 +63,33 @@ static void msg_free(void* ptr)
|
|||||||
#define msg_free(X) hub_free(X)
|
#define msg_free(X) hub_free(X)
|
||||||
#endif /* MSG_MEMORY_DEBUG */
|
#endif /* MSG_MEMORY_DEBUG */
|
||||||
|
|
||||||
|
static int msg_check_escapes(const char* string, size_t len)
|
||||||
|
{
|
||||||
|
char* start = (char*) string;
|
||||||
|
while ((start = memchr(start, '\\', len - (start - string))))
|
||||||
|
{
|
||||||
|
if (start+1 == (string + len))
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
switch (*(++start))
|
||||||
|
{
|
||||||
|
case '\\':
|
||||||
|
case 'n':
|
||||||
|
case 's':
|
||||||
|
/* Increment so we don't check the escaped
|
||||||
|
* character next time around. Not doing so
|
||||||
|
* leads to messages with escaped backslashes
|
||||||
|
* being incorrectly reported as having invalid
|
||||||
|
* escapes. */
|
||||||
|
++start;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
struct adc_message* adc_msg_incref(struct adc_message* msg)
|
struct adc_message* adc_msg_incref(struct adc_message* msg)
|
||||||
{
|
{
|
||||||
@@ -319,6 +346,13 @@ struct adc_message* adc_msg_parse(const char* line, size_t length)
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!msg_check_escapes(line, length))
|
||||||
|
{
|
||||||
|
LOG_DEBUG("Dropped message with invalid ADC escape.");
|
||||||
|
msg_free(command);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
if (line[length-1] != '\n')
|
if (line[length-1] != '\n')
|
||||||
{
|
{
|
||||||
need_terminate = 1;
|
need_terminate = 1;
|
||||||
@@ -498,6 +532,16 @@ struct adc_message* adc_msg_create(const char* line)
|
|||||||
return adc_msg_parse(line, strlen(line));
|
return adc_msg_parse(line, strlen(line));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
extern struct adc_message* adc_msg_construct_source(fourcc_t fourcc, sid_t source, size_t size)
|
||||||
|
{
|
||||||
|
struct adc_message* msg = adc_msg_construct(fourcc, size + 4);
|
||||||
|
if (!msg)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
adc_msg_add_argument(msg, sid_to_string(source));
|
||||||
|
msg->source = source;
|
||||||
|
return msg;
|
||||||
|
}
|
||||||
|
|
||||||
struct adc_message* adc_msg_construct(fourcc_t fourcc, size_t size)
|
struct adc_message* adc_msg_construct(fourcc_t fourcc, size_t size)
|
||||||
{
|
{
|
||||||
@@ -505,9 +549,7 @@ struct adc_message* adc_msg_construct(fourcc_t fourcc, size_t size)
|
|||||||
if (!msg)
|
if (!msg)
|
||||||
return NULL; /* OOM */
|
return NULL; /* OOM */
|
||||||
|
|
||||||
if (size < sizeof(fourcc)) size = sizeof(fourcc);
|
if (!adc_msg_grow(msg, sizeof(fourcc) + size + 1))
|
||||||
|
|
||||||
if (!adc_msg_grow(msg, size+1))
|
|
||||||
{
|
{
|
||||||
msg_free(msg);
|
msg_free(msg);
|
||||||
return NULL; /* OOM */
|
return NULL; /* OOM */
|
||||||
@@ -877,6 +919,41 @@ char* adc_msg_unescape(const char* string)
|
|||||||
return new_string;
|
return new_string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int adc_msg_unescape_to_target(const char* string, char* target, size_t target_size)
|
||||||
|
{
|
||||||
|
size_t w = 0;
|
||||||
|
char* ptr = (char*) target;
|
||||||
|
char* str = (char*) string;
|
||||||
|
int escaped = 0;
|
||||||
|
|
||||||
|
while (*str && w < (target_size-1))
|
||||||
|
{
|
||||||
|
if (escaped) {
|
||||||
|
if (*str == 's')
|
||||||
|
*ptr++ = ' ';
|
||||||
|
else if (*str == '\\')
|
||||||
|
*ptr++ = '\\';
|
||||||
|
else if (*str == 'n')
|
||||||
|
*ptr++ = '\n';
|
||||||
|
else
|
||||||
|
*ptr++ = *str;
|
||||||
|
w++;
|
||||||
|
escaped = 0;
|
||||||
|
} else {
|
||||||
|
if (*str == '\\')
|
||||||
|
escaped = 1;
|
||||||
|
else
|
||||||
|
{
|
||||||
|
*ptr++ = *str;
|
||||||
|
w++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
str++;
|
||||||
|
}
|
||||||
|
*ptr = 0;
|
||||||
|
w++;
|
||||||
|
return w;
|
||||||
|
}
|
||||||
|
|
||||||
char* adc_msg_escape(const char* string)
|
char* adc_msg_escape(const char* string)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -91,6 +91,12 @@ extern struct adc_message* adc_msg_create(const char* string);
|
|||||||
*/
|
*/
|
||||||
extern struct adc_message* adc_msg_construct(fourcc_t fourcc, size_t size);
|
extern struct adc_message* adc_msg_construct(fourcc_t fourcc, size_t size);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Construct a message for the given 'fourcc' and add a source SID to it,
|
||||||
|
* in addition pre-allocate 'size' bytes at the end of the message.
|
||||||
|
*/
|
||||||
|
extern struct adc_message* adc_msg_construct_source(fourcc_t fourcc, sid_t source, size_t size);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Remove a named argument from the command.
|
* Remove a named argument from the command.
|
||||||
*
|
*
|
||||||
@@ -195,6 +201,14 @@ extern int adc_msg_add_named_argument_uint64(struct adc_message* cmd, const char
|
|||||||
*/
|
*/
|
||||||
extern char* adc_msg_unescape(const char* string);
|
extern char* adc_msg_unescape(const char* string);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Convert a ADC command escaped string to a regular string.
|
||||||
|
* @return The number of bytes written to target. If the target is not large enough then
|
||||||
|
* the -1 is returned, but the string is guaranteed to always be \0 terminated.
|
||||||
|
*/
|
||||||
|
extern int adc_msg_unescape_to_target(const char* string, char* target, size_t target_size);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Convert a string to a ADC command escaped string.
|
* Convert a string to a ADC command escaped string.
|
||||||
* @return adc command escaped string or NULL if out of memory.
|
* @return adc command escaped string or NULL if out of memory.
|
||||||
|
|||||||
@@ -117,7 +117,7 @@ static enum command_parse_status command_extract_arguments(struct hub_info* hub,
|
|||||||
case 'u':
|
case 'u':
|
||||||
data = hub_malloc(sizeof(*data));
|
data = hub_malloc(sizeof(*data));
|
||||||
data->type = type_user;
|
data->type = type_user;
|
||||||
data->data.user = uman_get_user_by_nick(hub, token);
|
data->data.user = uman_get_user_by_nick(hub->users, token);
|
||||||
if (!data->data.user)
|
if (!data->data.user)
|
||||||
{
|
{
|
||||||
hub_free(data);
|
hub_free(data);
|
||||||
@@ -129,7 +129,7 @@ static enum command_parse_status command_extract_arguments(struct hub_info* hub,
|
|||||||
case 'i':
|
case 'i':
|
||||||
data = hub_malloc(sizeof(*data));
|
data = hub_malloc(sizeof(*data));
|
||||||
data->type = type_user;
|
data->type = type_user;
|
||||||
data->data.user = uman_get_user_by_cid(hub, token);
|
data->data.user = uman_get_user_by_cid(hub->users, token);
|
||||||
if (!data->data.user)
|
if (!data->data.user)
|
||||||
{
|
{
|
||||||
hub_free(data);
|
hub_free(data);
|
||||||
|
|||||||
@@ -421,7 +421,7 @@ static int command_whoip(struct command_base* cbase, struct hub_user* user, stru
|
|||||||
struct hub_user* u;
|
struct hub_user* u;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
ret = uman_get_user_by_addr(cbase->hub, users, arg->data.range);
|
ret = uman_get_user_by_addr(cbase->hub->users, users, arg->data.range);
|
||||||
if (!ret)
|
if (!ret)
|
||||||
{
|
{
|
||||||
list_clear(users, &null_free);
|
list_clear(users, &null_free);
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ my $config_dump = "void dump_config(struct hub_config* config, int ignore_defaul
|
|||||||
|
|
||||||
foreach my $option (@options)
|
foreach my $option (@options)
|
||||||
{
|
{
|
||||||
my ($type, $name, $default, $advanced, $short, $desc, $since, $example, $check) = @$option;
|
my ($type, $name, $default, $advanced, $short, $desc, $since, $example, $check, $ifdef) = @$option;
|
||||||
my $string = ($type =~ /(string|file|message)/);
|
my $string = ($type =~ /(string|file|message)/);
|
||||||
my $min = undef;
|
my $min = undef;
|
||||||
my $max = undef;
|
my $max = undef;
|
||||||
@@ -50,12 +50,15 @@ foreach my $option (@options)
|
|||||||
$regexp = undef if ($regexp eq "");
|
$regexp = undef if ($regexp eq "");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$config_defaults .= "#ifdef $ifdef\n" if ($ifdef ne "");
|
||||||
$config_defaults .= "\tconfig->$name = ";
|
$config_defaults .= "\tconfig->$name = ";
|
||||||
$config_defaults .= "hub_strdup(\"" if ($string);
|
$config_defaults .= "hub_strdup(\"" if ($string);
|
||||||
$config_defaults .= $default;
|
$config_defaults .= $default;
|
||||||
$config_defaults .= "\")" if ($string);
|
$config_defaults .= "\")" if ($string);
|
||||||
$config_defaults .= ";\n";
|
$config_defaults .= ";\n";
|
||||||
|
$config_defaults .= "#endif /* $ifdef */\n" if ($ifdef ne "");
|
||||||
|
|
||||||
|
$config_apply .= "#ifdef $ifdef\n" if ($ifdef ne "");
|
||||||
$config_apply .= "\tif (!strcmp(key, \"" . $name . "\"))\n\t{\n";
|
$config_apply .= "\tif (!strcmp(key, \"" . $name . "\"))\n\t{\n";
|
||||||
|
|
||||||
if ($type eq "int")
|
if ($type eq "int")
|
||||||
@@ -82,10 +85,17 @@ foreach my $option (@options)
|
|||||||
"\t\t\treturn -1;\n" .
|
"\t\t\treturn -1;\n" .
|
||||||
"\t\t}\n" .
|
"\t\t}\n" .
|
||||||
"\t\treturn 0;\n" .
|
"\t\treturn 0;\n" .
|
||||||
"\t}\n\n";
|
"\t}\n";
|
||||||
|
$config_apply .= "#endif /* $ifdef */\n" if ($ifdef ne "");
|
||||||
$config_free .= "\thub_free(config->" . $name . ");\n\n" if ($string);
|
$config_apply .= "\n";
|
||||||
|
|
||||||
|
if ($string)
|
||||||
|
{
|
||||||
|
$config_free .= "#ifdef $ifdef\n" if ($ifdef ne "");
|
||||||
|
$config_free .= "\thub_free(config->" . $name . ");\n";
|
||||||
|
$config_free .= "#endif /* $ifdef */\n" if ($ifdef ne "");
|
||||||
|
$config_free .= "\n";
|
||||||
|
}
|
||||||
|
|
||||||
my $out = "%s";
|
my $out = "%s";
|
||||||
my $val = "config->$name";
|
my $val = "config->$name";
|
||||||
@@ -100,8 +110,11 @@ foreach my $option (@options)
|
|||||||
$test = "strcmp(config->$name, \"$default\") != 0";
|
$test = "strcmp(config->$name, \"$default\") != 0";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$config_dump .= "#ifdef $ifdef\n" if ($ifdef ne "");
|
||||||
$config_dump .= "\tif (!ignore_defaults || $test)\n";
|
$config_dump .= "\tif (!ignore_defaults || $test)\n";
|
||||||
$config_dump .= "\t\tfprintf(stdout, \"$name = $out\\n\", $val);\n\n";
|
$config_dump .= "\t\tfprintf(stdout, \"$name = $out\\n\", $val);\n";
|
||||||
|
$config_dump .= "#endif /* $ifdef */\n" if ($ifdef ne "");
|
||||||
|
$config_dump .= "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
$config_apply .= "\t/* Still here -- unknown directive */\n";
|
$config_apply .= "\t/* Still here -- unknown directive */\n";
|
||||||
@@ -128,12 +141,14 @@ sub get_data($)
|
|||||||
my $example = "";
|
my $example = "";
|
||||||
my $description = "";
|
my $description = "";
|
||||||
my $since = "";
|
my $since = "";
|
||||||
|
my $ifdef = "";
|
||||||
|
|
||||||
$short = $p->getElementsByTagName("short")->item(0)->getFirstChild()->getData() if ($p->getElementsByTagName("short")->getLength());
|
$short = $p->getElementsByTagName("short")->item(0)->getFirstChild()->getData() if ($p->getElementsByTagName("short")->getLength());
|
||||||
$since = $p->getElementsByTagName("since")->item(0)->getFirstChild()->getData() if ($p->getElementsByTagName("since")->getLength());
|
$since = $p->getElementsByTagName("since")->item(0)->getFirstChild()->getData() if ($p->getElementsByTagName("since")->getLength());
|
||||||
$example = $p->getElementsByTagName("example")->item(0)->getFirstChild()->getData() if ($p->getElementsByTagName("example")->getLength());
|
$example = $p->getElementsByTagName("example")->item(0)->getFirstChild()->getData() if ($p->getElementsByTagName("example")->getLength());
|
||||||
$description = $p->getElementsByTagName("description")->item(0)->getFirstChild()->getData() if ($p->getElementsByTagName("description")->getLength());
|
$description = $p->getElementsByTagName("description")->item(0)->getFirstChild()->getData() if ($p->getElementsByTagName("description")->getLength());
|
||||||
my $check = $p->getElementsByTagName("check")->item(0);
|
my $check = $p->getElementsByTagName("check")->item(0);
|
||||||
|
$ifdef = $p->getElementsByTagName("ifdef")->item(0)->getFirstChild()->getData() if ($p->getElementsByTagName("ifdef")->getLength());
|
||||||
|
|
||||||
my @data = (
|
my @data = (
|
||||||
$p->getAttribute("type"),
|
$p->getAttribute("type"),
|
||||||
@@ -144,7 +159,8 @@ sub get_data($)
|
|||||||
$description,
|
$description,
|
||||||
$since,
|
$since,
|
||||||
$example,
|
$example,
|
||||||
$check
|
$check,
|
||||||
|
$ifdef
|
||||||
);
|
);
|
||||||
return @data;
|
return @data;
|
||||||
}
|
}
|
||||||
@@ -160,10 +176,12 @@ sub write_c_header(@)
|
|||||||
|
|
||||||
foreach my $option (@data)
|
foreach my $option (@data)
|
||||||
{
|
{
|
||||||
my ($type, $name, $default, $advanced, $short, $desc, $since, $example) = @$option;
|
my ($type, $name, $default, $advanced, $short, $desc, $since, $example, $check, $ifdef) = @$option;
|
||||||
|
|
||||||
my $string = ($type =~ /(string|file|message)/);
|
my $string = ($type =~ /(string|file|message)/);
|
||||||
|
|
||||||
|
print GENHEAD "#ifdef $ifdef\n" if ($ifdef ne "");
|
||||||
|
|
||||||
print GENHEAD "\t";
|
print GENHEAD "\t";
|
||||||
print GENHEAD "int " if ($type eq "int");
|
print GENHEAD "int " if ($type eq "int");
|
||||||
print GENHEAD "int " if ($type eq "boolean");
|
print GENHEAD "int " if ($type eq "boolean");
|
||||||
@@ -198,6 +216,7 @@ sub write_c_header(@)
|
|||||||
$comment = $pad . "/*<<< " . $comment . " */";
|
$comment = $pad . "/*<<< " . $comment . " */";
|
||||||
}
|
}
|
||||||
print GENHEAD $comment . "\n";
|
print GENHEAD $comment . "\n";
|
||||||
|
print GENHEAD "#endif /* $ifdef */\n" if ($ifdef ne "");
|
||||||
}
|
}
|
||||||
|
|
||||||
print GENHEAD "};\n\n";
|
print GENHEAD "};\n\n";
|
||||||
@@ -224,7 +243,7 @@ sub write_sql_dump(@)
|
|||||||
|
|
||||||
foreach my $option (@data)
|
foreach my $option (@data)
|
||||||
{
|
{
|
||||||
my ($type, $name, $default, $advanced, $short, $desc, $since, $example) = @$option;
|
my ($type, $name, $default, $advanced, $short, $desc, $since, $example, $check, $ifdef) = @$option;
|
||||||
|
|
||||||
if ($type =~ /(string|file|message)/ )
|
if ($type =~ /(string|file|message)/ )
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -110,25 +110,33 @@ int hub_handle_message(struct hub_info* hub, struct hub_user* u, const char* lin
|
|||||||
|
|
||||||
case ADC_CMD_DRES:
|
case ADC_CMD_DRES:
|
||||||
cmd->priority = -1;
|
cmd->priority = -1;
|
||||||
if (plugin_handle_search_result(hub, u, uman_get_user_by_sid(hub, cmd->target), cmd->cache) == st_deny)
|
if (plugin_handle_search_result(hub, u, uman_get_user_by_sid(hub->users, cmd->target), cmd->cache) == st_deny)
|
||||||
break;
|
break;
|
||||||
/* CHECK_FLOOD(search, 0); */
|
/* CHECK_FLOOD(search, 0); */
|
||||||
ROUTE_MSG;
|
ROUTE_MSG;
|
||||||
|
|
||||||
case ADC_CMD_DRCM:
|
case ADC_CMD_DRCM:
|
||||||
cmd->priority = -1;
|
cmd->priority = -1;
|
||||||
if (plugin_handle_revconnect(hub, u, uman_get_user_by_sid(hub, cmd->target)) == st_deny)
|
if (plugin_handle_revconnect(hub, u, uman_get_user_by_sid(hub->users, cmd->target)) == st_deny)
|
||||||
break;
|
break;
|
||||||
CHECK_FLOOD(connect, 1);
|
CHECK_FLOOD(connect, 1);
|
||||||
ROUTE_MSG;
|
ROUTE_MSG;
|
||||||
|
|
||||||
case ADC_CMD_DCTM:
|
case ADC_CMD_DCTM:
|
||||||
cmd->priority = -1;
|
cmd->priority = -1;
|
||||||
if (plugin_handle_connect(hub, u, uman_get_user_by_sid(hub, cmd->target)) == st_deny)
|
if (plugin_handle_connect(hub, u, uman_get_user_by_sid(hub->users, cmd->target)) == st_deny)
|
||||||
break;
|
break;
|
||||||
CHECK_FLOOD(connect, 1);
|
CHECK_FLOOD(connect, 1);
|
||||||
ROUTE_MSG;
|
ROUTE_MSG;
|
||||||
|
|
||||||
|
case ADC_CMD_BCMD:
|
||||||
|
case ADC_CMD_DCMD:
|
||||||
|
case ADC_CMD_ECMD:
|
||||||
|
case ADC_CMD_FCMD:
|
||||||
|
case ADC_CMD_HCMD:
|
||||||
|
CHECK_FLOOD(extras, 1);
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
CHECK_FLOOD(extras, 1);
|
CHECK_FLOOD(extras, 1);
|
||||||
ROUTE_MSG;
|
ROUTE_MSG;
|
||||||
@@ -332,7 +340,7 @@ int hub_handle_chat_message(struct hub_info* hub, struct hub_user* u, struct adc
|
|||||||
}
|
}
|
||||||
else if (private_msg)
|
else if (private_msg)
|
||||||
{
|
{
|
||||||
struct hub_user* target = uman_get_user_by_sid(hub, cmd->target);
|
struct hub_user* target = uman_get_user_by_sid(hub->users, cmd->target);
|
||||||
if (target)
|
if (target)
|
||||||
status = plugin_handle_private_message(hub, u, target, message_decoded, 0);
|
status = plugin_handle_private_message(hub, u, target, message_decoded, 0);
|
||||||
else
|
else
|
||||||
@@ -373,7 +381,7 @@ void hub_send_sid(struct hub_info* hub, struct hub_user* u)
|
|||||||
if (user_is_connecting(u))
|
if (user_is_connecting(u))
|
||||||
{
|
{
|
||||||
command = adc_msg_construct(ADC_CMD_ISID, 10);
|
command = adc_msg_construct(ADC_CMD_ISID, 10);
|
||||||
sid = uman_get_free_sid(hub, u);
|
sid = uman_get_free_sid(hub->users, u);
|
||||||
adc_msg_add_argument(command, (const char*) sid_to_string(sid));
|
adc_msg_add_argument(command, (const char*) sid_to_string(sid));
|
||||||
route_to_user(hub, u, command);
|
route_to_user(hub, u, command);
|
||||||
adc_msg_free(command);
|
adc_msg_free(command);
|
||||||
@@ -512,11 +520,11 @@ static int check_duplicate_logins_ok(struct hub_info* hub, struct hub_user* user
|
|||||||
struct hub_user* lookup1;
|
struct hub_user* lookup1;
|
||||||
struct hub_user* lookup2;
|
struct hub_user* lookup2;
|
||||||
|
|
||||||
lookup1 = uman_get_user_by_nick(hub, user->id.nick);
|
lookup1 = uman_get_user_by_nick(hub->users, user->id.nick);
|
||||||
if (lookup1)
|
if (lookup1)
|
||||||
return status_msg_inf_error_nick_taken;
|
return status_msg_inf_error_nick_taken;
|
||||||
|
|
||||||
lookup2 = uman_get_user_by_cid(hub, user->id.cid);
|
lookup2 = uman_get_user_by_cid(hub->users, user->id.cid);
|
||||||
if (lookup2)
|
if (lookup2)
|
||||||
return status_msg_inf_error_cid_taken;
|
return status_msg_inf_error_cid_taken;
|
||||||
|
|
||||||
@@ -560,8 +568,8 @@ static void hub_event_dispatcher(void* callback_data, struct event_data* message
|
|||||||
|
|
||||||
case UHUB_EVENT_USER_QUIT:
|
case UHUB_EVENT_USER_QUIT:
|
||||||
{
|
{
|
||||||
uman_remove(hub, user);
|
uman_remove(hub->users, user);
|
||||||
uman_send_quit_message(hub, user);
|
uman_send_quit_message(hub, hub->users, user);
|
||||||
on_logout_user(hub, user);
|
on_logout_user(hub, user);
|
||||||
hub_schedule_destroy_user(hub, user);
|
hub_schedule_destroy_user(hub, user);
|
||||||
break;
|
break;
|
||||||
@@ -578,7 +586,7 @@ static void hub_event_dispatcher(void* callback_data, struct event_data* message
|
|||||||
struct hub_user* u = (struct hub_user*) list_get_first(hub->users->list);
|
struct hub_user* u = (struct hub_user*) list_get_first(hub->users->list);
|
||||||
while (u)
|
while (u)
|
||||||
{
|
{
|
||||||
uman_remove(hub, u);
|
uman_remove(hub->users, u);
|
||||||
user_destroy(u);
|
user_destroy(u);
|
||||||
u = (struct hub_user*) list_get_first(hub->users->list);
|
u = (struct hub_user*) list_get_first(hub->users->list);
|
||||||
}
|
}
|
||||||
@@ -773,7 +781,8 @@ struct hub_info* hub_start_service(struct hub_config* config)
|
|||||||
hub->config = config;
|
hub->config = config;
|
||||||
hub->users = NULL;
|
hub->users = NULL;
|
||||||
|
|
||||||
if (uman_init(hub) == -1)
|
hub->users = uman_init();
|
||||||
|
if (!hub->users)
|
||||||
{
|
{
|
||||||
net_con_close(hub->server);
|
net_con_close(hub->server);
|
||||||
hub_free(hub);
|
hub_free(hub);
|
||||||
@@ -783,7 +792,7 @@ struct hub_info* hub_start_service(struct hub_config* config)
|
|||||||
if (event_queue_initialize(&hub->queue, hub_event_dispatcher, (void*) hub) == -1)
|
if (event_queue_initialize(&hub->queue, hub_event_dispatcher, (void*) hub) == -1)
|
||||||
{
|
{
|
||||||
net_con_close(hub->server);
|
net_con_close(hub->server);
|
||||||
uman_shutdown(hub);
|
uman_shutdown(hub->users);
|
||||||
hub_free(hub);
|
hub_free(hub);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@@ -795,7 +804,7 @@ struct hub_info* hub_start_service(struct hub_config* config)
|
|||||||
net_con_close(hub->server);
|
net_con_close(hub->server);
|
||||||
hub_free(hub->recvbuf);
|
hub_free(hub->recvbuf);
|
||||||
hub_free(hub->sendbuf);
|
hub_free(hub->sendbuf);
|
||||||
uman_shutdown(hub);
|
uman_shutdown(hub->users);
|
||||||
hub_free(hub);
|
hub_free(hub);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@@ -824,7 +833,7 @@ void hub_shutdown_service(struct hub_info* hub)
|
|||||||
event_queue_shutdown(hub->queue);
|
event_queue_shutdown(hub->queue);
|
||||||
net_con_close(hub->server);
|
net_con_close(hub->server);
|
||||||
server_alt_port_stop(hub);
|
server_alt_port_stop(hub);
|
||||||
uman_shutdown(hub);
|
uman_shutdown(hub->users);
|
||||||
hub->status = hub_status_stopped;
|
hub->status = hub_status_stopped;
|
||||||
hub_free(hub->sendbuf);
|
hub_free(hub->sendbuf);
|
||||||
hub_free(hub->recvbuf);
|
hub_free(hub->recvbuf);
|
||||||
|
|||||||
@@ -24,12 +24,12 @@
|
|||||||
void on_login_success(struct hub_info* hub, struct hub_user* u)
|
void on_login_success(struct hub_info* hub, struct hub_user* u)
|
||||||
{
|
{
|
||||||
/* Send user list of all existing users */
|
/* Send user list of all existing users */
|
||||||
if (!uman_send_user_list(hub, u))
|
if (!uman_send_user_list(hub, hub->users, u))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
/* Mark as being in the normal state, and add user to the user list */
|
/* Mark as being in the normal state, and add user to the user list */
|
||||||
user_set_state(u, state_normal);
|
user_set_state(u, state_normal);
|
||||||
uman_add(hub, u);
|
uman_add(hub->users, u);
|
||||||
|
|
||||||
/* Announce new user to all connected users */
|
/* Announce new user to all connected users */
|
||||||
if (user_is_logged_in(u))
|
if (user_is_logged_in(u))
|
||||||
|
|||||||
@@ -325,8 +325,8 @@ static int check_nick(struct hub_info* hub, struct hub_user* user, struct adc_me
|
|||||||
|
|
||||||
static int check_logged_in(struct hub_info* hub, struct hub_user* user, struct adc_message* cmd)
|
static int check_logged_in(struct hub_info* hub, struct hub_user* user, struct adc_message* cmd)
|
||||||
{
|
{
|
||||||
struct hub_user* lookup1 = uman_get_user_by_nick(hub, user->id.nick);
|
struct hub_user* lookup1 = uman_get_user_by_nick(hub->users, user->id.nick);
|
||||||
struct hub_user* lookup2 = uman_get_user_by_cid(hub, user->id.cid);
|
struct hub_user* lookup2 = uman_get_user_by_cid(hub->users, user->id.cid);
|
||||||
|
|
||||||
if (lookup1 == user)
|
if (lookup1 == user)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* uhub - A tiny ADC p2p connection hub
|
* uhub - A tiny ADC p2p connection hub
|
||||||
* Copyright (C) 2007-2010, Jan Vidar Krey
|
* Copyright (C) 2007-2012, Jan Vidar Krey
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@@ -18,7 +18,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "uhub.h"
|
#include "uhub.h"
|
||||||
#include "hubio.h"
|
|
||||||
|
|
||||||
#ifdef DEBUG_SENDQ
|
#ifdef DEBUG_SENDQ
|
||||||
static void debug_msg(const char* prefix, struct adc_message* msg)
|
static void debug_msg(const char* prefix, struct adc_message* msg)
|
||||||
@@ -35,13 +34,13 @@ static void debug_msg(const char* prefix, struct adc_message* msg)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
struct hub_recvq* hub_recvq_create()
|
struct ioq_recv* ioq_recv_create()
|
||||||
{
|
{
|
||||||
struct hub_recvq* q = hub_malloc_zero(sizeof(struct hub_recvq));
|
struct ioq_recv* q = hub_malloc_zero(sizeof(struct ioq_recv));
|
||||||
return q;
|
return q;
|
||||||
}
|
}
|
||||||
|
|
||||||
void hub_recvq_destroy(struct hub_recvq* q)
|
void ioq_recv_destroy(struct ioq_recv* q)
|
||||||
{
|
{
|
||||||
if (q)
|
if (q)
|
||||||
{
|
{
|
||||||
@@ -50,7 +49,7 @@ void hub_recvq_destroy(struct hub_recvq* q)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t hub_recvq_get(struct hub_recvq* q, void* buf, size_t bufsize)
|
size_t ioq_recv_get(struct ioq_recv* q, void* buf, size_t bufsize)
|
||||||
{
|
{
|
||||||
uhub_assert(bufsize >= q->size);
|
uhub_assert(bufsize >= q->size);
|
||||||
if (q->size)
|
if (q->size)
|
||||||
@@ -65,7 +64,7 @@ size_t hub_recvq_get(struct hub_recvq* q, void* buf, size_t bufsize)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t hub_recvq_set(struct hub_recvq* q, void* buf, size_t bufsize)
|
size_t ioq_recv_set(struct ioq_recv* q, void* buf, size_t bufsize)
|
||||||
{
|
{
|
||||||
if (q->buf)
|
if (q->buf)
|
||||||
{
|
{
|
||||||
@@ -89,9 +88,9 @@ size_t hub_recvq_set(struct hub_recvq* q, void* buf, size_t bufsize)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
struct hub_sendq* hub_sendq_create()
|
struct ioq_send* ioq_send_create()
|
||||||
{
|
{
|
||||||
struct hub_sendq* q = hub_malloc_zero(sizeof(struct hub_sendq));
|
struct ioq_send* q = hub_malloc_zero(sizeof(struct ioq_send));
|
||||||
if (!q)
|
if (!q)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
@@ -110,7 +109,7 @@ static void clear_send_queue_callback(void* ptr)
|
|||||||
adc_msg_free((struct adc_message*) ptr);
|
adc_msg_free((struct adc_message*) ptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
void hub_sendq_destroy(struct hub_sendq* q)
|
void ioq_send_destroy(struct ioq_send* q)
|
||||||
{
|
{
|
||||||
if (q)
|
if (q)
|
||||||
{
|
{
|
||||||
@@ -120,21 +119,21 @@ void hub_sendq_destroy(struct hub_sendq* q)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void hub_sendq_add(struct hub_sendq* q, struct adc_message* msg_)
|
void ioq_send_add(struct ioq_send* q, struct adc_message* msg_)
|
||||||
{
|
{
|
||||||
struct adc_message* msg = adc_msg_incref(msg_);
|
struct adc_message* msg = adc_msg_incref(msg_);
|
||||||
#ifdef DEBUG_SENDQ
|
#ifdef DEBUG_SENDQ
|
||||||
debug_msg("hub_sendq_add", msg);
|
debug_msg("ioq_send_add", msg);
|
||||||
#endif
|
#endif
|
||||||
uhub_assert(msg->cache && *msg->cache);
|
uhub_assert(msg->cache && *msg->cache);
|
||||||
list_append(q->queue, msg);
|
list_append(q->queue, msg);
|
||||||
q->size += msg->length;
|
q->size += msg->length;
|
||||||
}
|
}
|
||||||
|
|
||||||
void hub_sendq_remove(struct hub_sendq* q, struct adc_message* msg)
|
void ioq_send_remove(struct ioq_send* q, struct adc_message* msg)
|
||||||
{
|
{
|
||||||
#ifdef DEBUG_SENDQ
|
#ifdef DEBUG_SENDQ
|
||||||
debug_msg("hub_sendq_remove", msg);
|
debug_msg("ioq_send_remove", msg);
|
||||||
#endif
|
#endif
|
||||||
list_remove(q->queue, msg);
|
list_remove(q->queue, msg);
|
||||||
q->size -= msg->length;
|
q->size -= msg->length;
|
||||||
@@ -142,7 +141,7 @@ void hub_sendq_remove(struct hub_sendq* q, struct adc_message* msg)
|
|||||||
q->offset = 0;
|
q->offset = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int hub_sendq_send(struct hub_sendq* q, struct hub_user* user)
|
int ioq_send_send(struct ioq_send* q, struct hub_user* user)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
struct adc_message* msg = list_get_first(q->queue);
|
struct adc_message* msg = list_get_first(q->queue);
|
||||||
@@ -156,18 +155,18 @@ int hub_sendq_send(struct hub_sendq* q, struct hub_user* user)
|
|||||||
if (msg->length - q->offset > 0)
|
if (msg->length - q->offset > 0)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
hub_sendq_remove(q, msg);
|
ioq_send_remove(q, msg);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
int hub_sendq_is_empty(struct hub_sendq* q)
|
int ioq_send_is_empty(struct ioq_send* q)
|
||||||
{
|
{
|
||||||
return (q->size - q->offset) == 0;
|
return (q->size - q->offset) == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t hub_sendq_get_bytes(struct hub_sendq* q)
|
size_t ioq_send_get_bytes(struct ioq_send* q)
|
||||||
{
|
{
|
||||||
return q->size - q->offset;
|
return q->size - q->offset;
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* uhub - A tiny ADC p2p connection hub
|
* uhub - A tiny ADC p2p connection hub
|
||||||
* Copyright (C) 2007-2010, Jan Vidar Krey
|
* Copyright (C) 2007-2012, Jan Vidar Krey
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@@ -17,25 +17,25 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef HAVE_UHUB_HUB_IO_H
|
#ifndef HAVE_UHUB_IO_QUEUE_H
|
||||||
#define HAVE_UHUB_HUB_IO_H
|
#define HAVE_UHUB_IO_QUEUE_H
|
||||||
|
|
||||||
struct adc_message;
|
struct adc_message;
|
||||||
struct linked_list;
|
struct linked_list;
|
||||||
typedef int (*hub_recvq_write)(void* desc, const void* buf, size_t len);
|
typedef int (*ioq_write)(void* desc, const void* buf, size_t len);
|
||||||
typedef int (*hub_recvq_read)(void* desc, void* buf, size_t len);
|
typedef int (*ioq_read)(void* desc, void* buf, size_t len);
|
||||||
|
|
||||||
struct hub_sendq
|
struct ioq_send
|
||||||
{
|
{
|
||||||
size_t size; /** Size of send queue (in bytes, not messages) */
|
size_t size; /** Size of send queue (in bytes, not messages) */
|
||||||
size_t offset; /** Queue byte offset in the first message. Should be 0 unless a partial write. */
|
size_t offset; /** Queue byte offset in the first message. Should be 0 unless a partial write. */
|
||||||
#ifdef SSL_SUPPORT
|
#ifdef SSL_SUPPORT
|
||||||
size_t last_send; /** When using SSL, one have to send the exact same buffer and length if a write cannot complete. */
|
size_t last_send; /** When using SSL, one have to send the exact same buffer and length if a write cannot complete. */
|
||||||
#endif
|
#endif
|
||||||
struct linked_list* queue; /** List of queued messages */
|
struct linked_list* queue; /** List of queued messages (struct adc_message) */
|
||||||
};
|
};
|
||||||
|
|
||||||
struct hub_recvq
|
struct ioq_recv
|
||||||
{
|
{
|
||||||
char* buf;
|
char* buf;
|
||||||
size_t size;
|
size_t size;
|
||||||
@@ -44,63 +44,63 @@ struct hub_recvq
|
|||||||
/**
|
/**
|
||||||
* Create a send queue
|
* Create a send queue
|
||||||
*/
|
*/
|
||||||
extern struct hub_sendq* hub_sendq_create();
|
extern struct ioq_send* ioq_send_create();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Destroy a send queue, and delete any queued messages.
|
* Destroy a send queue, and delete any queued messages.
|
||||||
*/
|
*/
|
||||||
extern void hub_sendq_destroy(struct hub_sendq*);
|
extern void ioq_send_destroy(struct ioq_send*);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a message to the send queue.
|
* Add a message to the send queue.
|
||||||
*/
|
*/
|
||||||
extern void hub_sendq_add(struct hub_sendq*, struct adc_message* msg);
|
extern void ioq_send_add(struct ioq_send*, struct adc_message* msg);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Process the send queue, and send as many messages as possible.
|
* Process the send queue, and send as many messages as possible.
|
||||||
* @returns -1 on error, 0 if unable to send more, 1 if more can be sent.
|
* @returns -1 on error, 0 if unable to send more, 1 if more can be sent.
|
||||||
*/
|
*/
|
||||||
extern int hub_sendq_send(struct hub_sendq*, struct hub_user*);
|
extern int ioq_send_send(struct ioq_send*, struct hub_user*);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @returns 1 if send queue is empty, 0 otherwise.
|
* @returns 1 if send queue is empty, 0 otherwise.
|
||||||
*/
|
*/
|
||||||
extern int hub_sendq_is_empty(struct hub_sendq*);
|
extern int ioq_send_is_empty(struct ioq_send*);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @returns the number of bytes remaining to be sent in the queue.
|
* @returns the number of bytes remaining to be sent in the queue.
|
||||||
*/
|
*/
|
||||||
extern size_t hub_sendq_get_bytes(struct hub_sendq*);
|
extern size_t ioq_send_get_bytes(struct ioq_send*);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a receive queue.
|
* Create a receive queue.
|
||||||
*/
|
*/
|
||||||
extern struct hub_recvq* hub_recvq_create();
|
extern struct ioq_recv* ioq_recv_create();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Destroy a receive queue.
|
* Destroy a receive queue.
|
||||||
*/
|
*/
|
||||||
extern void hub_recvq_destroy(struct hub_recvq*);
|
extern void ioq_recv_destroy(struct ioq_recv*);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the buffer, copies it into buf and deallocates it.
|
* Gets the buffer, copies it into buf and deallocates it.
|
||||||
* NOTE: bufsize *MUST* be larger than the buffer, otherwise it asserts.
|
* NOTE: bufsize *MUST* be larger than the buffer, otherwise it asserts.
|
||||||
* @return the number of bytes copied into buf.
|
* @return the number of bytes copied into buf.
|
||||||
*/
|
*/
|
||||||
extern size_t hub_recvq_get(struct hub_recvq*, void* buf, size_t bufsize);
|
extern size_t ioq_recv_get(struct ioq_recv*, void* buf, size_t bufsize);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the buffer
|
* Sets the buffer
|
||||||
*/
|
*/
|
||||||
extern size_t hub_recvq_set(struct hub_recvq*, void* buf, size_t bufsize);
|
extern size_t ioq_recv_set(struct ioq_recv*, void* buf, size_t bufsize);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return 1 if size is zero, 0 otherwise.
|
* @return 1 if size is zero, 0 otherwise.
|
||||||
*/
|
*/
|
||||||
extern int hub_recvq_is_empty(struct hub_recvq* buf);
|
extern int ioq_recv_is_empty(struct ioq_recv* buf);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#endif /* HAVE_UHUB_HUB_IO_H */
|
#endif /* HAVE_UHUB_IO_QUEUE_H */
|
||||||
@@ -18,17 +18,14 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <uhub.h>
|
#include <uhub.h>
|
||||||
#include "hubio.h"
|
#include "ioqueue.h"
|
||||||
#include "probe.h"
|
#include "probe.h"
|
||||||
|
|
||||||
/* FIXME: This should not be needed! */
|
|
||||||
extern struct hub_info* g_hub;
|
|
||||||
|
|
||||||
int handle_net_read(struct hub_user* user)
|
int handle_net_read(struct hub_user* user)
|
||||||
{
|
{
|
||||||
static char buf[MAX_RECV_BUF];
|
static char buf[MAX_RECV_BUF];
|
||||||
struct hub_recvq* q = user->recv_queue;
|
struct ioq_recv* q = user->recv_queue;
|
||||||
size_t buf_size = hub_recvq_get(q, buf, MAX_RECV_BUF);
|
size_t buf_size = ioq_recv_get(q, buf, MAX_RECV_BUF);
|
||||||
ssize_t size;
|
ssize_t size;
|
||||||
|
|
||||||
if (user_flag_get(user, flag_maxbuf))
|
if (user_flag_get(user, flag_maxbuf))
|
||||||
@@ -71,9 +68,9 @@ int handle_net_read(struct hub_user* user)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (((pos - start) > 0) && g_hub->config->max_recv_buffer > (pos - start))
|
if (((pos - start) > 0) && user->hub->config->max_recv_buffer > (pos - start))
|
||||||
{
|
{
|
||||||
if (hub_handle_message(g_hub, user, start, (pos - start)) == -1)
|
if (hub_handle_message(user->hub, user, start, (pos - start)) == -1)
|
||||||
{
|
{
|
||||||
return quit_protocol_error;
|
return quit_protocol_error;
|
||||||
}
|
}
|
||||||
@@ -88,20 +85,20 @@ int handle_net_read(struct hub_user* user)
|
|||||||
|
|
||||||
if (lastPos || remaining)
|
if (lastPos || remaining)
|
||||||
{
|
{
|
||||||
if (remaining < (size_t) g_hub->config->max_recv_buffer)
|
if (remaining < (size_t) user->hub->config->max_recv_buffer)
|
||||||
{
|
{
|
||||||
hub_recvq_set(q, lastPos ? lastPos : buf, remaining);
|
ioq_recv_set(q, lastPos ? lastPos : buf, remaining);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
hub_recvq_set(q, 0, 0);
|
ioq_recv_set(q, 0, 0);
|
||||||
user_flag_set(user, flag_maxbuf);
|
user_flag_set(user, flag_maxbuf);
|
||||||
LOG_WARN("Received message past max_recv_buffer, dropping message.");
|
LOG_WARN("Received message past max_recv_buffer, dropping message.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
hub_recvq_set(q, 0, 0);
|
ioq_recv_set(q, 0, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
@@ -110,9 +107,9 @@ int handle_net_read(struct hub_user* user)
|
|||||||
int handle_net_write(struct hub_user* user)
|
int handle_net_write(struct hub_user* user)
|
||||||
{
|
{
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
while (hub_sendq_get_bytes(user->send_queue))
|
while (ioq_send_get_bytes(user->send_queue))
|
||||||
{
|
{
|
||||||
ret = hub_sendq_send(user->send_queue, user);
|
ret = ioq_send_send(user->send_queue, user);
|
||||||
if (ret <= 0)
|
if (ret <= 0)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -120,7 +117,7 @@ int handle_net_write(struct hub_user* user)
|
|||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return quit_socket_error;
|
return quit_socket_error;
|
||||||
|
|
||||||
if (hub_sendq_get_bytes(user->send_queue))
|
if (ioq_send_get_bytes(user->send_queue))
|
||||||
{
|
{
|
||||||
user_net_io_want_write(user);
|
user_net_io_want_write(user);
|
||||||
}
|
}
|
||||||
@@ -144,7 +141,7 @@ void net_event(struct net_connection* con, int event, void *arg)
|
|||||||
{
|
{
|
||||||
if (user_is_connecting(user))
|
if (user_is_connecting(user))
|
||||||
{
|
{
|
||||||
hub_disconnect_user(g_hub, user, quit_timeout);
|
hub_disconnect_user(user->hub, user, quit_timeout);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -154,7 +151,7 @@ void net_event(struct net_connection* con, int event, void *arg)
|
|||||||
flag_close = handle_net_read(user);
|
flag_close = handle_net_read(user);
|
||||||
if (flag_close)
|
if (flag_close)
|
||||||
{
|
{
|
||||||
hub_disconnect_user(g_hub, user, flag_close);
|
hub_disconnect_user(user->hub, user, flag_close);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -164,7 +161,7 @@ void net_event(struct net_connection* con, int event, void *arg)
|
|||||||
flag_close = handle_net_write(user);
|
flag_close = handle_net_write(user);
|
||||||
if (flag_close)
|
if (flag_close)
|
||||||
{
|
{
|
||||||
hub_disconnect_user(g_hub, user, flag_close);
|
hub_disconnect_user(user->hub, user, flag_close);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -76,12 +76,11 @@ static void probe_net_event(struct net_connection* con, int events, void *arg)
|
|||||||
probe_recvbuf[0] == 22 &&
|
probe_recvbuf[0] == 22 &&
|
||||||
probe_recvbuf[1] == 3 && /* protocol major version */
|
probe_recvbuf[1] == 3 && /* protocol major version */
|
||||||
probe_recvbuf[5] == 1 && /* message type */
|
probe_recvbuf[5] == 1 && /* message type */
|
||||||
probe_recvbuf[9] == probe_recvbuf[1] &&
|
probe_recvbuf[9] == probe_recvbuf[1])
|
||||||
probe_recvbuf[10] == probe_recvbuf[2])
|
|
||||||
{
|
{
|
||||||
if (probe->hub->config->tls_enable)
|
if (probe->hub->config->tls_enable)
|
||||||
{
|
{
|
||||||
LOG_TRACE("Probed TLS %d.%d connection", (int) probe_recvbuf[1], (int) probe_recvbuf[2]);
|
LOG_TRACE("Probed TLS %d.%d connection", (int) probe_recvbuf[9], (int) probe_recvbuf[10]);
|
||||||
if (user_create(probe->hub, probe->connection, &probe->addr))
|
if (user_create(probe->hub, probe->connection, &probe->addr))
|
||||||
{
|
{
|
||||||
probe->connection = 0;
|
probe->connection = 0;
|
||||||
@@ -90,7 +89,7 @@ static void probe_net_event(struct net_connection* con, int events, void *arg)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
LOG_TRACE("Probed TLS %d.%d connection. TLS disabled in hub.", (int) probe_recvbuf[1], (int) probe_recvbuf[2]);
|
LOG_TRACE("Probed TLS %d.%d connection. TLS disabled in hub.", (int) probe_recvbuf[9], (int) probe_recvbuf[10]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ int route_message(struct hub_info* hub, struct hub_user* u, struct adc_message*
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 'D':
|
case 'D':
|
||||||
target = uman_get_user_by_sid(hub, msg->target);
|
target = uman_get_user_by_sid(hub->users, msg->target);
|
||||||
if (target)
|
if (target)
|
||||||
{
|
{
|
||||||
route_to_user(hub, target, msg);
|
route_to_user(hub, target, msg);
|
||||||
@@ -38,7 +38,7 @@ int route_message(struct hub_info* hub, struct hub_user* u, struct adc_message*
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 'E':
|
case 'E':
|
||||||
target = uman_get_user_by_sid(hub, msg->target);
|
target = uman_get_user_by_sid(hub->users, msg->target);
|
||||||
if (target)
|
if (target)
|
||||||
{
|
{
|
||||||
route_to_user(hub, target, msg);
|
route_to_user(hub, target, msg);
|
||||||
@@ -108,17 +108,17 @@ int route_to_user(struct hub_info* hub, struct hub_user* user, struct adc_messag
|
|||||||
|
|
||||||
uhub_assert(msg->cache && *msg->cache);
|
uhub_assert(msg->cache && *msg->cache);
|
||||||
|
|
||||||
if (hub_sendq_is_empty(user->send_queue) && !user_flag_get(user, flag_pipeline))
|
if (ioq_send_is_empty(user->send_queue) && !user_flag_get(user, flag_pipeline))
|
||||||
{
|
{
|
||||||
/* Perform oportunistic write */
|
/* Perform oportunistic write */
|
||||||
hub_sendq_add(user->send_queue, msg);
|
ioq_send_add(user->send_queue, msg);
|
||||||
handle_net_write(user);
|
handle_net_write(user);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (check_send_queue(hub, user, msg) >= 0)
|
if (check_send_queue(hub, user, msg) >= 0)
|
||||||
{
|
{
|
||||||
hub_sendq_add(user->send_queue, msg);
|
ioq_send_add(user->send_queue, msg);
|
||||||
if (!user_flag_get(user, flag_pipeline))
|
if (!user_flag_get(user, flag_pipeline))
|
||||||
user_net_io_want_write(user);
|
user_net_io_want_write(user);
|
||||||
}
|
}
|
||||||
@@ -128,7 +128,7 @@ int route_to_user(struct hub_info* hub, struct hub_user* user, struct adc_messag
|
|||||||
|
|
||||||
int route_flush_pipeline(struct hub_info* hub, struct hub_user* u)
|
int route_flush_pipeline(struct hub_info* hub, struct hub_user* u)
|
||||||
{
|
{
|
||||||
if (hub_sendq_is_empty(u->send_queue))
|
if (ioq_send_is_empty(u->send_queue))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
handle_net_write(u);
|
handle_net_write(u);
|
||||||
|
|||||||
@@ -46,8 +46,8 @@ struct hub_user* user_create(struct hub_info* hub, struct net_connection* con, s
|
|||||||
if (user == NULL)
|
if (user == NULL)
|
||||||
return NULL; /* OOM */
|
return NULL; /* OOM */
|
||||||
|
|
||||||
user->send_queue = hub_sendq_create();
|
user->send_queue = ioq_send_create();
|
||||||
user->recv_queue = hub_recvq_create();
|
user->recv_queue = ioq_recv_create();
|
||||||
|
|
||||||
user->connection = con;
|
user->connection = con;
|
||||||
net_con_reinitialize(user->connection, net_event, user, NET_EVENT_READ);
|
net_con_reinitialize(user->connection, net_event, user, NET_EVENT_READ);
|
||||||
@@ -60,6 +60,8 @@ struct hub_user* user_create(struct hub_info* hub, struct net_connection* con, s
|
|||||||
flood_control_reset(&user->flood_search);
|
flood_control_reset(&user->flood_search);
|
||||||
flood_control_reset(&user->flood_update);
|
flood_control_reset(&user->flood_update);
|
||||||
flood_control_reset(&user->flood_extras);
|
flood_control_reset(&user->flood_extras);
|
||||||
|
|
||||||
|
user->hub = hub;
|
||||||
return user;
|
return user;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -68,8 +70,8 @@ void user_destroy(struct hub_user* user)
|
|||||||
{
|
{
|
||||||
LOG_TRACE("user_destroy(), user=%p", user);
|
LOG_TRACE("user_destroy(), user=%p", user);
|
||||||
|
|
||||||
hub_recvq_destroy(user->recv_queue);
|
ioq_recv_destroy(user->recv_queue);
|
||||||
hub_sendq_destroy(user->send_queue);
|
ioq_send_destroy(user->send_queue);
|
||||||
|
|
||||||
if (user->connection)
|
if (user->connection)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -113,8 +113,8 @@ struct hub_user
|
|||||||
struct linked_list* feature_cast; /** Features supported by feature cast */
|
struct linked_list* feature_cast; /** Features supported by feature cast */
|
||||||
struct adc_message* info; /** ADC 'INF' message (broadcasted to everyone joining the hub) */
|
struct adc_message* info; /** ADC 'INF' message (broadcasted to everyone joining the hub) */
|
||||||
struct hub_info* hub; /** The hub instance this user belong to */
|
struct hub_info* hub; /** The hub instance this user belong to */
|
||||||
struct hub_recvq* recv_queue;
|
struct ioq_recv* recv_queue;
|
||||||
struct hub_sendq* send_queue;
|
struct ioq_send* send_queue;
|
||||||
struct net_connection* connection; /** Connection data */
|
struct net_connection* connection; /** Connection data */
|
||||||
struct hub_user_limits limits; /** Data used for limitation */
|
struct hub_user_limits limits; /** Data used for limitation */
|
||||||
enum user_quit_reason quit_reason; /** Quit reason (see user_quit_reason) */
|
enum user_quit_reason quit_reason; /** Quit reason (see user_quit_reason) */
|
||||||
|
|||||||
@@ -38,50 +38,48 @@ static void clear_user_list_callback(void* ptr)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void uman_update_stats(struct hub_info* hub)
|
#ifdef STATS_SUPPORT
|
||||||
|
void uman_update_stats(struct hub_user_manager* users)
|
||||||
{
|
{
|
||||||
const int factor = TIMEOUT_STATS;
|
const int factor = TIMEOUT_STATS;
|
||||||
struct net_statistics* total;
|
struct net_statistics* total;
|
||||||
struct net_statistics* intermediate;
|
struct net_statistics* intermediate;
|
||||||
net_stats_get(&intermediate, &total);
|
net_stats_get(&intermediate, &total);
|
||||||
|
|
||||||
hub->stats.net_tx = (intermediate->tx / factor);
|
users->stats.net_tx = (intermediate->tx / factor);
|
||||||
hub->stats.net_rx = (intermediate->rx / factor);
|
users->stats.net_rx = (intermediate->rx / factor);
|
||||||
hub->stats.net_tx_peak = MAX(hub->stats.net_tx, hub->stats.net_tx_peak);
|
users->stats.net_tx_peak = MAX(users->stats.net_tx, users->stats.net_tx_peak);
|
||||||
hub->stats.net_rx_peak = MAX(hub->stats.net_rx, hub->stats.net_rx_peak);
|
users->stats.net_rx_peak = MAX(users->stats.net_rx, users->stats.net_rx_peak);
|
||||||
hub->stats.net_tx_total = total->tx;
|
users->stats.net_tx_total = total->tx;
|
||||||
hub->stats.net_rx_total = total->rx;
|
users->stats.net_rx_total = total->rx;
|
||||||
|
|
||||||
net_stats_reset();
|
net_stats_reset();
|
||||||
}
|
}
|
||||||
|
|
||||||
void uman_print_stats(struct hub_info* hub)
|
void uman_print_stats(struct hub_user_manager* users)
|
||||||
{
|
{
|
||||||
LOG_INFO("Statistics users=" PRINTF_SIZE_T " (peak_users=" PRINTF_SIZE_T "), net_tx=%d KB/s, net_rx=%d KB/s (peak_tx=%d KB/s, peak_rx=%d KB/s)",
|
LOG_INFO("Statistics users=" PRINTF_SIZE_T " (peak_users=" PRINTF_SIZE_T "), net_tx=%d KB/s, net_rx=%d KB/s (peak_tx=%d KB/s, peak_rx=%d KB/s)",
|
||||||
hub->users->count,
|
users->users->count,
|
||||||
hub->users->count_peak,
|
users->users->count_peak,
|
||||||
(int) hub->stats.net_tx / 1024,
|
(int) users->stats.net_tx / 1024,
|
||||||
(int) hub->stats.net_rx / 1024,
|
(int) users->stats.net_rx / 1024,
|
||||||
(int) hub->stats.net_tx_peak / 1024,
|
(int) users->stats.net_tx_peak / 1024,
|
||||||
(int) hub->stats.net_rx_peak / 1024);
|
(int) users->stats.net_rx_peak / 1024);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void timer_statistics(struct timeout_evt* t)
|
static void timer_statistics(struct timeout_evt* t)
|
||||||
{
|
{
|
||||||
struct hub_info* hub = (struct hub_info*) t->ptr;
|
struct hub_user_manager* users = (struct hub_user_manager*) t->ptr;
|
||||||
uman_update_stats(hub);
|
uman_update_stats(users);
|
||||||
timeout_queue_reschedule(net_backend_get_timeout_queue(), hub->users->timeout, TIMEOUT_STATS);
|
timeout_queue_reschedule(net_backend_get_timeout_queue(), users->timeout, TIMEOUT_STATS);
|
||||||
}
|
}
|
||||||
|
#endif // STATS_SUPPORT
|
||||||
|
|
||||||
int uman_init(struct hub_info* hub)
|
struct hub_user_manager* uman_init()
|
||||||
{
|
{
|
||||||
struct hub_user_manager* users = NULL;
|
struct hub_user_manager* users = (struct hub_user_manager*) hub_malloc_zero(sizeof(struct hub_user_manager));
|
||||||
if (!hub)
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
users = (struct hub_user_manager*) hub_malloc_zero(sizeof(struct hub_user_manager));
|
|
||||||
if (!users)
|
if (!users)
|
||||||
return -1;
|
return NULL;
|
||||||
|
|
||||||
users->list = list_create();
|
users->list = list_create();
|
||||||
users->sids = sid_pool_create(net_get_max_sockets());
|
users->sids = sid_pool_create(net_get_max_sockets());
|
||||||
@@ -90,143 +88,136 @@ int uman_init(struct hub_info* hub)
|
|||||||
{
|
{
|
||||||
list_destroy(users->list);
|
list_destroy(users->list);
|
||||||
hub_free(users);
|
hub_free(users);
|
||||||
return -1;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef STATS_SUPPORT
|
||||||
if (net_backend_get_timeout_queue())
|
if (net_backend_get_timeout_queue())
|
||||||
{
|
{
|
||||||
users->timeout = hub_malloc_zero(sizeof(struct timeout_evt));
|
users->timeout = hub_malloc_zero(sizeof(struct timeout_evt));
|
||||||
timeout_evt_initialize(users->timeout, timer_statistics, hub);
|
timeout_evt_initialize(users->timeout, timer_statistics, hub);
|
||||||
timeout_queue_insert(net_backend_get_timeout_queue(), users->timeout, TIMEOUT_STATS);
|
timeout_queue_insert(net_backend_get_timeout_queue(), users->timeout, TIMEOUT_STATS);
|
||||||
}
|
}
|
||||||
|
#endif // STATS_SUPPORT
|
||||||
|
|
||||||
hub->users = users;
|
return users;
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int uman_shutdown(struct hub_info* hub)
|
int uman_shutdown(struct hub_user_manager* users)
|
||||||
{
|
{
|
||||||
if (!hub || !hub->users)
|
if (!users)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
#ifdef STATS_SUPPORT
|
||||||
if (net_backend_get_timeout_queue())
|
if (net_backend_get_timeout_queue())
|
||||||
{
|
{
|
||||||
timeout_queue_remove(net_backend_get_timeout_queue(), hub->users->timeout);
|
timeout_queue_remove(net_backend_get_timeout_queue(), users->timeout);
|
||||||
hub_free(hub->users->timeout);
|
hub_free(users->timeout);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
if (hub->users->list)
|
if (users->list)
|
||||||
{
|
{
|
||||||
list_clear(hub->users->list, &clear_user_list_callback);
|
list_clear(users->list, &clear_user_list_callback);
|
||||||
list_destroy(hub->users->list);
|
list_destroy(users->list);
|
||||||
}
|
}
|
||||||
sid_pool_destroy(hub->users->sids);
|
sid_pool_destroy(users->sids);
|
||||||
hub_free(hub->users);
|
|
||||||
hub->users = 0;
|
|
||||||
|
|
||||||
|
|
||||||
|
hub_free(users);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int uman_add(struct hub_info* hub, struct hub_user* user)
|
int uman_add(struct hub_user_manager* users, struct hub_user* user)
|
||||||
{
|
{
|
||||||
if (!hub || !user)
|
if (!users || !user)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
if (user->hub)
|
list_append(users->list, user);
|
||||||
return -1;
|
users->count++;
|
||||||
|
users->count_peak = MAX(users->count, users->count_peak);
|
||||||
|
|
||||||
list_append(hub->users->list, user);
|
users->shared_size += user->limits.shared_size;
|
||||||
hub->users->count++;
|
users->shared_files += user->limits.shared_files;
|
||||||
hub->users->count_peak = MAX(hub->users->count, hub->users->count_peak);
|
|
||||||
|
|
||||||
hub->users->shared_size += user->limits.shared_size;
|
|
||||||
hub->users->shared_files += user->limits.shared_files;
|
|
||||||
|
|
||||||
user->hub = hub;
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int uman_remove(struct hub_info* hub, struct hub_user* user)
|
int uman_remove(struct hub_user_manager* users, struct hub_user* user)
|
||||||
{
|
{
|
||||||
if (!hub || !user)
|
if (!users || !user)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
list_remove(hub->users->list, user);
|
list_remove(users->list, user);
|
||||||
|
|
||||||
if (hub->users->count > 0)
|
if (users->count > 0)
|
||||||
{
|
{
|
||||||
hub->users->count--;
|
users->count--;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
uhub_assert(!"negative count!");
|
uhub_assert(!"negative count!");
|
||||||
}
|
}
|
||||||
|
|
||||||
hub->users->shared_size -= user->limits.shared_size;
|
users->shared_size -= user->limits.shared_size;
|
||||||
hub->users->shared_files -= user->limits.shared_files;
|
users->shared_files -= user->limits.shared_files;
|
||||||
|
|
||||||
user->hub = 0;
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
struct hub_user* uman_get_user_by_sid(struct hub_info* hub, sid_t sid)
|
struct hub_user* uman_get_user_by_sid(struct hub_user_manager* users, sid_t sid)
|
||||||
{
|
{
|
||||||
return sid_lookup(hub->users->sids, sid);
|
return sid_lookup(users->sids, sid);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
struct hub_user* uman_get_user_by_cid(struct hub_info* hub, const char* cid)
|
struct hub_user* uman_get_user_by_cid(struct hub_user_manager* users, const char* cid)
|
||||||
{
|
{
|
||||||
struct hub_user* user = (struct hub_user*) list_get_first(hub->users->list); /* iterate users - only on incoming INF msg */
|
struct hub_user* user = (struct hub_user*) list_get_first(users->list); /* iterate users - only on incoming INF msg */
|
||||||
while (user)
|
while (user)
|
||||||
{
|
{
|
||||||
if (strcmp(user->id.cid, cid) == 0)
|
if (strcmp(user->id.cid, cid) == 0)
|
||||||
return user;
|
return user;
|
||||||
user = (struct hub_user*) list_get_next(hub->users->list);
|
user = (struct hub_user*) list_get_next(users->list);
|
||||||
}
|
}
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
struct hub_user* uman_get_user_by_nick(struct hub_info* hub, const char* nick)
|
struct hub_user* uman_get_user_by_nick(struct hub_user_manager* users, const char* nick)
|
||||||
{
|
{
|
||||||
struct hub_user* user = (struct hub_user*) list_get_first(hub->users->list); /* iterate users - only on incoming INF msg */
|
struct hub_user* user = (struct hub_user*) list_get_first(users->list); /* iterate users - only on incoming INF msg */
|
||||||
while (user)
|
while (user)
|
||||||
{
|
{
|
||||||
if (strcmp(user->id.nick, nick) == 0)
|
if (strcmp(user->id.nick, nick) == 0)
|
||||||
return user;
|
return user;
|
||||||
user = (struct hub_user*) list_get_next(hub->users->list);
|
user = (struct hub_user*) list_get_next(users->list);
|
||||||
}
|
}
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t uman_get_user_by_addr(struct hub_info* hub, struct linked_list* users, struct ip_range* range)
|
size_t uman_get_user_by_addr(struct hub_user_manager* users, struct linked_list* target, struct ip_range* range)
|
||||||
{
|
{
|
||||||
size_t num = 0;
|
size_t num = 0;
|
||||||
struct hub_user* user = (struct hub_user*) list_get_first(hub->users->list); /* iterate users - only on incoming INF msg */
|
struct hub_user* user = (struct hub_user*) list_get_first(users->list); /* iterate users - only on incoming INF msg */
|
||||||
while (user)
|
while (user)
|
||||||
{
|
{
|
||||||
if (ip_in_range(&user->id.addr, range))
|
if (ip_in_range(&user->id.addr, range))
|
||||||
{
|
{
|
||||||
list_append(users, user);
|
list_append(target, user);
|
||||||
num++;
|
num++;
|
||||||
}
|
}
|
||||||
user = (struct hub_user*) list_get_next(hub->users->list);
|
user = (struct hub_user*) list_get_next(users->list);
|
||||||
}
|
}
|
||||||
return num;
|
return num;
|
||||||
}
|
}
|
||||||
|
|
||||||
int uman_send_user_list(struct hub_info* hub, struct hub_user* target)
|
int uman_send_user_list(struct hub_info* hub, struct hub_user_manager* users, struct hub_user* target)
|
||||||
{
|
{
|
||||||
int ret = 1;
|
int ret = 1;
|
||||||
struct hub_user* user;
|
struct hub_user* user;
|
||||||
user_flag_set(target, flag_user_list);
|
user_flag_set(target, flag_user_list);
|
||||||
user = (struct hub_user*) list_get_first(hub->users->list); /* iterate users - only on INF or PAS msg */
|
user = (struct hub_user*) list_get_first(users->list); /* iterate users - only on INF or PAS msg */
|
||||||
while (user)
|
while (user)
|
||||||
{
|
{
|
||||||
if (user_is_logged_in(user))
|
if (user_is_logged_in(user))
|
||||||
@@ -235,7 +226,7 @@ int uman_send_user_list(struct hub_info* hub, struct hub_user* target)
|
|||||||
if (!ret)
|
if (!ret)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
user = (struct hub_user*) list_get_next(hub->users->list);
|
user = (struct hub_user*) list_get_next(users->list);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
@@ -248,7 +239,7 @@ int uman_send_user_list(struct hub_info* hub, struct hub_user* target)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
void uman_send_quit_message(struct hub_info* hub, struct hub_user* leaving)
|
void uman_send_quit_message(struct hub_info* hub, struct hub_user_manager* users, struct hub_user* leaving)
|
||||||
{
|
{
|
||||||
struct adc_message* command = adc_msg_construct(ADC_CMD_IQUI, 6);
|
struct adc_message* command = adc_msg_construct(ADC_CMD_IQUI, 6);
|
||||||
adc_msg_add_argument(command, (const char*) sid_to_string(leaving->id.sid));
|
adc_msg_add_argument(command, (const char*) sid_to_string(leaving->id.sid));
|
||||||
@@ -261,9 +252,9 @@ void uman_send_quit_message(struct hub_info* hub, struct hub_user* leaving)
|
|||||||
adc_msg_free(command);
|
adc_msg_free(command);
|
||||||
}
|
}
|
||||||
|
|
||||||
sid_t uman_get_free_sid(struct hub_info* hub, struct hub_user* user)
|
sid_t uman_get_free_sid(struct hub_user_manager* users, struct hub_user* user)
|
||||||
{
|
{
|
||||||
sid_t sid = sid_alloc(hub->users->sids, user);
|
sid_t sid = sid_alloc(users->sids, user);
|
||||||
user->id.sid = sid;
|
user->id.sid = sid;
|
||||||
return sid;
|
return sid;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,36 +28,38 @@ struct hub_user_manager
|
|||||||
uint64_t shared_size; /**<< "The total number of shared bytes among fully connected users." */
|
uint64_t shared_size; /**<< "The total number of shared bytes among fully connected users." */
|
||||||
uint64_t shared_files; /**<< "The total number of shared files among fully connected users." */
|
uint64_t shared_files; /**<< "The total number of shared files among fully connected users." */
|
||||||
struct linked_list* list; /**<< "Contains all logged in users" */
|
struct linked_list* list; /**<< "Contains all logged in users" */
|
||||||
|
#ifdef STATS_SUPPORT
|
||||||
struct timeout_evt* timeout; /**<< "Timeout handler for statistics" */
|
struct timeout_evt* timeout; /**<< "Timeout handler for statistics" */
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initializes the user manager.
|
* Initializes the user manager.
|
||||||
* @return 0 on success, or -1 if error (out of memory).
|
* @return 0 on success, or -1 if error (out of memory).
|
||||||
*/
|
*/
|
||||||
extern int uman_init(struct hub_info* hub);
|
extern struct hub_user_manager* uman_init();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Shuts down the user manager.
|
* Shuts down the user manager.
|
||||||
* All users will be disconnected and deleted as part of this.
|
* All users will be disconnected and deleted as part of this.
|
||||||
*
|
*
|
||||||
* @return 0 on success, or -1 in an error occured (hub is invalid).
|
* @return 0 on success, or -1 in an error occured (invalid pointer).
|
||||||
*/
|
*/
|
||||||
extern int uman_shutdown(struct hub_info* hub);
|
extern int uman_shutdown(struct hub_user_manager* users);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generate statistics for logfiles.
|
* Generate statistics for logfiles.
|
||||||
*/
|
*/
|
||||||
extern void uman_update_stats(struct hub_info* hub);
|
extern void uman_update_stats(struct hub_user_manager* users);
|
||||||
extern void uman_print_stats(struct hub_info* hub);
|
extern void uman_print_stats(struct hub_user_manager* users);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a user to the user manager.
|
* Add a user to the user manager.
|
||||||
*
|
*
|
||||||
* @param hub The hub to add the user to
|
* @param users The usermanager to add the user to
|
||||||
* @param user The user to be added to the hub.
|
* @param user The user to be added to the hub.
|
||||||
*/
|
*/
|
||||||
extern int uman_add(struct hub_info* hub, struct hub_user* user);
|
extern int uman_add(struct hub_user_manager* users, struct hub_user* user);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Remove a user from the user manager.
|
* Remove a user from the user manager.
|
||||||
@@ -66,12 +68,12 @@ extern int uman_add(struct hub_info* hub, struct hub_user* user);
|
|||||||
*
|
*
|
||||||
* @return 0 if successfully removed, -1 if error.
|
* @return 0 if successfully removed, -1 if error.
|
||||||
*/
|
*/
|
||||||
extern int uman_remove(struct hub_info* hub, struct hub_user* user);
|
extern int uman_remove(struct hub_user_manager* users, struct hub_user* user);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns and allocates an unused session ID (SID).
|
* Returns and allocates an unused session ID (SID).
|
||||||
*/
|
*/
|
||||||
extern sid_t uman_get_free_sid(struct hub_info* hub, struct hub_user* user);
|
extern sid_t uman_get_free_sid(struct hub_user_manager* users, struct hub_user* user);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Lookup a user based on the session ID (SID).
|
* Lookup a user based on the session ID (SID).
|
||||||
@@ -86,26 +88,28 @@ extern sid_t uman_get_free_sid(struct hub_info* hub, struct hub_user* user);
|
|||||||
*
|
*
|
||||||
* @return a user if found, or NULL if not found
|
* @return a user if found, or NULL if not found
|
||||||
*/
|
*/
|
||||||
extern struct hub_user* uman_get_user_by_sid(struct hub_info* hub, sid_t sid);
|
extern struct hub_user* uman_get_user_by_sid(struct hub_user_manager* users, sid_t sid);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Lookup a user based on the client ID (CID).
|
* Lookup a user based on the client ID (CID).
|
||||||
* @return a user if found, or NULL if not found
|
* @return a user if found, or NULL if not found
|
||||||
*/
|
*/
|
||||||
extern struct hub_user* uman_get_user_by_cid(struct hub_info* hub, const char* cid);
|
extern struct hub_user* uman_get_user_by_cid(struct hub_user_manager* users, const char* cid);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Lookup a user based on the nick name.
|
* Lookup a user based on the nick name.
|
||||||
* @return a user if found, or NULL if not found
|
* @return a user if found, or NULL if not found
|
||||||
*/
|
*/
|
||||||
extern struct hub_user* uman_get_user_by_nick(struct hub_info* hub, const char* nick);
|
extern struct hub_user* uman_get_user_by_nick(struct hub_user_manager* users, const char* nick);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Lookup users based on an ip address range.
|
* Lookup users based on an ip address range.
|
||||||
*
|
*
|
||||||
|
* @param[out] target the list of users matching the address
|
||||||
|
* @param range the IP range of users to match
|
||||||
* @return The number of users matching the addressess, or -1 on error (mask is wrong).
|
* @return The number of users matching the addressess, or -1 on error (mask is wrong).
|
||||||
*/
|
*/
|
||||||
extern size_t uman_get_user_by_addr(struct hub_info* hub, struct linked_list* users, struct ip_range* range);
|
extern size_t uman_get_user_by_addr(struct hub_user_manager* users, struct linked_list* target, struct ip_range* range);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Send the user list of connected clients to 'user'.
|
* Send the user list of connected clients to 'user'.
|
||||||
@@ -113,13 +117,13 @@ extern size_t uman_get_user_by_addr(struct hub_info* hub, struct linked_list* us
|
|||||||
*
|
*
|
||||||
* @return 1 if sending the user list succeeded, 0 otherwise.
|
* @return 1 if sending the user list succeeded, 0 otherwise.
|
||||||
*/
|
*/
|
||||||
extern int uman_send_user_list(struct hub_info* hub, struct hub_user* user);
|
extern int uman_send_user_list(struct hub_info* hub, struct hub_user_manager* users, struct hub_user* user);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Send a quit message to all connected users when 'user' is
|
* Send a quit message to all connected users when 'user' is
|
||||||
* leaving the hub (for whatever reason).
|
* leaving the hub (for whatever reason).
|
||||||
*/
|
*/
|
||||||
extern void uman_send_quit_message(struct hub_info* hub, struct hub_user* user);
|
extern void uman_send_quit_message(struct hub_info* hub, struct hub_user_manager* users, struct hub_user* user);
|
||||||
|
|
||||||
|
|
||||||
#endif /* HAVE_UHUB_USER_MANAGER_H */
|
#endif /* HAVE_UHUB_USER_MANAGER_H */
|
||||||
|
|||||||
@@ -295,7 +295,7 @@ void net_con_callback(struct net_connection* con, int events)
|
|||||||
|
|
||||||
if (events == NET_EVENT_TIMEOUT)
|
if (events == NET_EVENT_TIMEOUT)
|
||||||
{
|
{
|
||||||
LOG_TRACE("net_con_callback(%p, TIMEOUT", con);
|
LOG_TRACE("net_con_callback(%p, TIMEOUT)", con);
|
||||||
con->callback(con, events, con->ptr);
|
con->callback(con, events, con->ptr);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -67,7 +67,7 @@ static size_t get_messages(struct chat_history_data* data, size_t num, struct cb
|
|||||||
char* message;
|
char* message;
|
||||||
int skiplines = 0;
|
int skiplines = 0;
|
||||||
size_t lines = 0;
|
size_t lines = 0;
|
||||||
int total = list_size(messages);
|
size_t total = list_size(messages);
|
||||||
|
|
||||||
if (total == 0)
|
if (total == 0)
|
||||||
return 0;
|
return 0;
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* uhub - A tiny ADC p2p connection hub
|
* uhub - A tiny ADC p2p connection hub
|
||||||
* Copyright (C) 2007-2011, Jan Vidar Krey
|
* Copyright (C) 2007-2012, Jan Vidar Krey
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@@ -26,7 +26,9 @@
|
|||||||
|
|
||||||
#include "util/misc.h"
|
#include "util/misc.h"
|
||||||
#include "util/config_token.h"
|
#include "util/config_token.h"
|
||||||
|
#ifndef WIN32
|
||||||
#include <syslog.h>
|
#include <syslog.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
struct ip_addr_encap;
|
struct ip_addr_encap;
|
||||||
|
|
||||||
@@ -60,11 +62,13 @@ static int log_open_file(struct plugin_handle* plugin, struct log_data* data)
|
|||||||
return (data->fd != -1);
|
return (data->fd != -1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef WIN32
|
||||||
static int log_open_syslog(struct plugin_handle* plugin)
|
static int log_open_syslog(struct plugin_handle* plugin)
|
||||||
{
|
{
|
||||||
openlog("uhub", 0, LOG_USER);
|
openlog("uhub", 0, LOG_USER);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static struct log_data* parse_config(const char* line, struct plugin_handle* plugin)
|
static struct log_data* parse_config(const char* line, struct plugin_handle* plugin)
|
||||||
{
|
{
|
||||||
@@ -94,6 +98,7 @@ static struct log_data* parse_config(const char* line, struct plugin_handle* plu
|
|||||||
data->logfile = strdup(cfg_settings_get_value(setting));
|
data->logfile = strdup(cfg_settings_get_value(setting));
|
||||||
data->logmode = mode_file;
|
data->logmode = mode_file;
|
||||||
}
|
}
|
||||||
|
#ifndef WIN32
|
||||||
else if (strcmp(cfg_settings_get_key(setting), "syslog") == 0)
|
else if (strcmp(cfg_settings_get_key(setting), "syslog") == 0)
|
||||||
{
|
{
|
||||||
int use_syslog = 0;
|
int use_syslog = 0;
|
||||||
@@ -102,6 +107,7 @@ static struct log_data* parse_config(const char* line, struct plugin_handle* plu
|
|||||||
data->logmode = (use_syslog) ? mode_syslog : mode_file;
|
data->logmode = (use_syslog) ? mode_syslog : mode_file;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
set_error_message(plugin, "Unknown startup parameters given");
|
set_error_message(plugin, "Unknown startup parameters given");
|
||||||
@@ -134,6 +140,7 @@ static struct log_data* parse_config(const char* line, struct plugin_handle* plu
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#ifndef WIN32
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (!log_open_syslog(plugin))
|
if (!log_open_syslog(plugin))
|
||||||
@@ -144,7 +151,7 @@ static struct log_data* parse_config(const char* line, struct plugin_handle* plu
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -155,10 +162,12 @@ static void log_close(struct log_data* data)
|
|||||||
hub_free(data->logfile);
|
hub_free(data->logfile);
|
||||||
close(data->fd);
|
close(data->fd);
|
||||||
}
|
}
|
||||||
|
#ifndef WIN32
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
closelog();
|
closelog();
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
hub_free(data);
|
hub_free(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -186,19 +195,25 @@ static void log_message(struct log_data* data, const char *format, ...)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
#ifdef WIN32
|
||||||
|
_commit(data->fd);
|
||||||
|
#else
|
||||||
#if defined _POSIX_SYNCHRONIZED_IO && _POSIX_SYNCHRONIZED_IO > 0
|
#if defined _POSIX_SYNCHRONIZED_IO && _POSIX_SYNCHRONIZED_IO > 0
|
||||||
fdatasync(data->fd);
|
fdatasync(data->fd);
|
||||||
#else
|
#else
|
||||||
fsync(data->fd);
|
fsync(data->fd);
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#ifndef WIN32
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
va_start(args, format);
|
va_start(args, format);
|
||||||
vsyslog(LOG_INFO, format, args);
|
vsyslog(LOG_INFO, format, args);
|
||||||
va_end(args);
|
va_end(args);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
static void log_user_login(struct plugin_handle* plugin, struct plugin_user* user)
|
static void log_user_login(struct plugin_handle* plugin, struct plugin_user* user)
|
||||||
|
|||||||
@@ -28,7 +28,6 @@
|
|||||||
|
|
||||||
#include "util/misc.h"
|
#include "util/misc.h"
|
||||||
#include "util/config_token.h"
|
#include "util/config_token.h"
|
||||||
#include <syslog.h>
|
|
||||||
|
|
||||||
#define MAX_WELCOME_SIZE 16384
|
#define MAX_WELCOME_SIZE 16384
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* uhub - A tiny ADC p2p connection hub
|
* uhub - A tiny ADC p2p connection hub
|
||||||
* Copyright (C) 2007-2009, Jan Vidar Krey
|
* Copyright (C) 2007-2012, Jan Vidar Krey
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@@ -103,7 +103,7 @@
|
|||||||
#include <openssl/err.h>
|
#include <openssl/err.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "../version.h"
|
#include "version.h"
|
||||||
|
|
||||||
#define uhub_assert assert
|
#define uhub_assert assert
|
||||||
|
|
||||||
@@ -270,6 +270,7 @@ typedef unsigned __int64 uint64_t;
|
|||||||
#define open _open
|
#define open _open
|
||||||
#define close _close
|
#define close _close
|
||||||
#define read _read
|
#define read _read
|
||||||
|
#define write _write
|
||||||
#define NEED_GETOPT
|
#define NEED_GETOPT
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
@@ -23,7 +23,9 @@
|
|||||||
#define ADC_CID_SIZE 39
|
#define ADC_CID_SIZE 39
|
||||||
#define BIG_BUFSIZE 32768
|
#define BIG_BUFSIZE 32768
|
||||||
#define TIGERSIZE 24
|
#define TIGERSIZE 24
|
||||||
|
|
||||||
// #define ADCC_DEBUG
|
// #define ADCC_DEBUG
|
||||||
|
// #define ADC_CLIENT_DEBUG_PROTO
|
||||||
|
|
||||||
static ssize_t ADC_client_recv(struct ADC_client* client);
|
static ssize_t ADC_client_recv(struct ADC_client* client);
|
||||||
static void ADC_client_send_info(struct ADC_client* client);
|
static void ADC_client_send_info(struct ADC_client* client);
|
||||||
@@ -156,12 +158,25 @@ static void event_callback(struct net_connection* con, int events, void *arg)
|
|||||||
TARGET = NULL; \
|
TARGET = NULL; \
|
||||||
hub_free(TMP);
|
hub_free(TMP);
|
||||||
|
|
||||||
|
#define UNESCAPE_ARG_X(TMP, TARGET, SIZE) \
|
||||||
|
if (TMP) \
|
||||||
|
adc_msg_unescape_to_target(TMP, TARGET, SIZE); \
|
||||||
|
else \
|
||||||
|
TARGET[0] = '\0'; \
|
||||||
|
hub_free(TMP);
|
||||||
|
|
||||||
#define EXTRACT_NAMED_ARG(MSG, NAME, TARGET) \
|
#define EXTRACT_NAMED_ARG(MSG, NAME, TARGET) \
|
||||||
do { \
|
do { \
|
||||||
char* tmp = adc_msg_get_named_argument(MSG, NAME); \
|
char* tmp = adc_msg_get_named_argument(MSG, NAME); \
|
||||||
UNESCAPE_ARG(tmp, TARGET); \
|
UNESCAPE_ARG(tmp, TARGET); \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
|
#define EXTRACT_NAMED_ARG_X(MSG, NAME, TARGET, SIZE) \
|
||||||
|
do { \
|
||||||
|
char* tmp = adc_msg_get_named_argument(MSG, NAME); \
|
||||||
|
UNESCAPE_ARG_X(tmp, TARGET, SIZE); \
|
||||||
|
} while(0)
|
||||||
|
|
||||||
#define EXTRACT_POS_ARG(MSG, POS, TARGET) \
|
#define EXTRACT_POS_ARG(MSG, POS, TARGET) \
|
||||||
do { \
|
do { \
|
||||||
char* tmp = adc_msg_get_argument(MSG, POS); \
|
char* tmp = adc_msg_get_argument(MSG, POS); \
|
||||||
@@ -171,9 +186,12 @@ static void event_callback(struct net_connection* con, int events, void *arg)
|
|||||||
|
|
||||||
static void ADC_client_on_recv_line(struct ADC_client* client, const char* line, size_t length)
|
static void ADC_client_on_recv_line(struct ADC_client* client, const char* line, size_t length)
|
||||||
{
|
{
|
||||||
|
struct ADC_chat_message chat;
|
||||||
|
struct ADC_client_callback_data data;
|
||||||
|
|
||||||
ADC_TRACE;
|
ADC_TRACE;
|
||||||
#ifdef ADC_CLIENT_DEBUG_PROTO
|
#ifdef ADC_CLIENT_DEBUG_PROTO
|
||||||
ADC_client_debug(client, "- LINE: '%s'", start);
|
ADC_client_debug(client, "- LINE: '%s'", line);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Parse message */
|
/* Parse message */
|
||||||
@@ -210,12 +228,18 @@ static void ADC_client_on_recv_line(struct ADC_client* client, const char* line,
|
|||||||
case ADC_CMD_DMSG:
|
case ADC_CMD_DMSG:
|
||||||
case ADC_CMD_IMSG:
|
case ADC_CMD_IMSG:
|
||||||
{
|
{
|
||||||
struct ADC_chat_message chat;
|
|
||||||
struct ADC_client_callback_data data;
|
|
||||||
chat.from_sid = msg->source;
|
chat.from_sid = msg->source;
|
||||||
chat.to_sid = msg->target;
|
chat.to_sid = msg->target;
|
||||||
data.chat = &chat;
|
data.chat = &chat;
|
||||||
EXTRACT_POS_ARG(msg, 0, chat.message);
|
EXTRACT_POS_ARG(msg, 0, chat.message);
|
||||||
|
chat.flags = 0;
|
||||||
|
|
||||||
|
if (adc_msg_has_named_argument(msg, ADC_MSG_FLAG_ACTION))
|
||||||
|
chat.flags |= chat_flags_action;
|
||||||
|
|
||||||
|
if (adc_msg_has_named_argument(msg, ADC_MSG_FLAG_PRIVATE))
|
||||||
|
chat.flags |= chat_flags_private;
|
||||||
|
|
||||||
client->callback(client, ADC_CLIENT_MESSAGE, &data);
|
client->callback(client, ADC_CLIENT_MESSAGE, &data);
|
||||||
hub_free(chat.message);
|
hub_free(chat.message);
|
||||||
break;
|
break;
|
||||||
@@ -259,24 +283,33 @@ static void ADC_client_on_recv_line(struct ADC_client* client, const char* line,
|
|||||||
{
|
{
|
||||||
struct ADC_user user;
|
struct ADC_user user;
|
||||||
user.sid = msg->source;
|
user.sid = msg->source;
|
||||||
EXTRACT_NAMED_ARG(msg, "NI", user.name);
|
EXTRACT_NAMED_ARG_X(msg, "NI", user.name, sizeof(user.name));
|
||||||
EXTRACT_NAMED_ARG(msg, "DE", user.description);
|
EXTRACT_NAMED_ARG_X(msg, "DE", user.description, sizeof(user.description));
|
||||||
EXTRACT_NAMED_ARG(msg, "VE", user.version);
|
EXTRACT_NAMED_ARG_X(msg, "VE", user.version, sizeof(user.version));
|
||||||
EXTRACT_NAMED_ARG(msg, "ID", user.cid);
|
EXTRACT_NAMED_ARG_X(msg, "ID", user.cid, sizeof(user.cid));
|
||||||
EXTRACT_NAMED_ARG(msg, "I4", user.address);
|
EXTRACT_NAMED_ARG_X(msg, "I4", user.address, sizeof(user.address));
|
||||||
|
|
||||||
struct ADC_client_callback_data data;
|
struct ADC_client_callback_data data;
|
||||||
data.user = &user;
|
data.user = &user;
|
||||||
client->callback(client, ADC_CLIENT_USER_JOIN, &data);
|
client->callback(client, ADC_CLIENT_USER_JOIN, &data);
|
||||||
|
|
||||||
hub_free(user.name);
|
|
||||||
hub_free(user.description);
|
|
||||||
hub_free(user.version);
|
|
||||||
hub_free(user.cid);
|
|
||||||
hub_free(user.address);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ADC_CMD_IQUI:
|
||||||
|
{
|
||||||
|
struct ADC_client_quit_reason reason;
|
||||||
|
memset(&reason, 0, sizeof(reason));
|
||||||
|
reason.sid = string_to_sid(&line[5]);
|
||||||
|
|
||||||
|
if (adc_msg_has_named_argument(msg, ADC_QUI_FLAG_DISCONNECT))
|
||||||
|
reason.flags |= 1;
|
||||||
|
|
||||||
|
data.quit = &reason;
|
||||||
|
client->callback(client, ADC_CLIENT_USER_QUIT, &data);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
case ADC_CMD_ISTA:
|
case ADC_CMD_ISTA:
|
||||||
/*
|
/*
|
||||||
@@ -360,9 +393,7 @@ void ADC_client_send(struct ADC_client* client, char* msg)
|
|||||||
void ADC_client_send_info(struct ADC_client* client)
|
void ADC_client_send_info(struct ADC_client* client)
|
||||||
{
|
{
|
||||||
ADC_TRACE;
|
ADC_TRACE;
|
||||||
char binf[11];
|
client->info = adc_msg_construct_source(ADC_CMD_BINF, client->sid, 64);
|
||||||
snprintf(binf, 11, "BINF %s\n", sid_to_string(client->sid));
|
|
||||||
client->info = adc_msg_create(binf);
|
|
||||||
|
|
||||||
adc_msg_add_named_argument_string(client->info, ADC_INF_FLAG_NICK, client->nick);
|
adc_msg_add_named_argument_string(client->info, ADC_INF_FLAG_NICK, client->nick);
|
||||||
|
|
||||||
|
|||||||
@@ -71,6 +71,13 @@ struct ADC_hub_info
|
|||||||
char* version;
|
char* version;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enum ADC_chat_message_flags
|
||||||
|
{
|
||||||
|
chat_flags_none = 0,
|
||||||
|
chat_flags_action = 1,
|
||||||
|
chat_flags_private = 2
|
||||||
|
};
|
||||||
|
|
||||||
struct ADC_chat_message
|
struct ADC_chat_message
|
||||||
{
|
{
|
||||||
sid_t from_sid;
|
sid_t from_sid;
|
||||||
@@ -79,14 +86,23 @@ struct ADC_chat_message
|
|||||||
int flags;
|
int flags;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#define MAX_DESC_LEN 128
|
||||||
struct ADC_user
|
struct ADC_user
|
||||||
{
|
{
|
||||||
sid_t sid;
|
sid_t sid;
|
||||||
char* cid;
|
char cid[MAX_CID_LEN+1];
|
||||||
char* name;
|
char name[MAX_NICK_LEN+1];
|
||||||
char* description;
|
char description[MAX_DESC_LEN+1];
|
||||||
char* address;
|
char address[INET6_ADDRSTRLEN+1];
|
||||||
char* version;
|
char version[MAX_UA_LEN+1];
|
||||||
|
};
|
||||||
|
|
||||||
|
struct ADC_client_quit_reason
|
||||||
|
{
|
||||||
|
sid_t sid;
|
||||||
|
sid_t initator; // 0 = default/hub.
|
||||||
|
char message[128]; // optional
|
||||||
|
int flags;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@@ -96,6 +112,7 @@ struct ADC_client_callback_data
|
|||||||
struct ADC_hub_info* hubinfo;
|
struct ADC_hub_info* hubinfo;
|
||||||
struct ADC_chat_message* chat;
|
struct ADC_chat_message* chat;
|
||||||
struct ADC_user* user;
|
struct ADC_user* user;
|
||||||
|
struct ADC_client_quit_reason* quit;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -19,52 +19,122 @@
|
|||||||
|
|
||||||
#include "adcclient.h"
|
#include "adcclient.h"
|
||||||
|
|
||||||
|
static struct ADC_user g_usermap[SID_MAX];
|
||||||
|
|
||||||
|
static void user_add(const struct ADC_user* user)
|
||||||
|
{
|
||||||
|
printf(" >> JOIN: %s (%s)\n", user->name, user->address);
|
||||||
|
memcpy(&g_usermap[user->sid], user, sizeof(struct ADC_user));
|
||||||
|
}
|
||||||
|
|
||||||
|
static struct ADC_user* user_get(sid_t sid)
|
||||||
|
{
|
||||||
|
|
||||||
|
struct ADC_user* user = &g_usermap[sid];
|
||||||
|
uhub_assert(user->sid != 0);
|
||||||
|
return user;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static void user_remove(const struct ADC_client_quit_reason* quit)
|
||||||
|
{
|
||||||
|
struct ADC_user* user = user_get(quit->sid);
|
||||||
|
printf(" << QUIT: %s (%s)\n", user->name, quit->message);
|
||||||
|
memset(&g_usermap[quit->sid], 0, sizeof(struct ADC_user));
|
||||||
|
}
|
||||||
|
|
||||||
|
static void on_message(struct ADC_chat_message* chat)
|
||||||
|
{
|
||||||
|
struct ADC_user* user;
|
||||||
|
const char* pm = (chat->flags & chat_flags_private) ? "PM" : " ";
|
||||||
|
const char* brack1 = (chat->flags & chat_flags_action) ? "*" : "<";
|
||||||
|
const char* brack2 = (chat->flags & chat_flags_action) ? "" : ">";
|
||||||
|
struct linked_list* lines;
|
||||||
|
int ret;
|
||||||
|
char* line;
|
||||||
|
|
||||||
|
if (!chat->from_sid)
|
||||||
|
{
|
||||||
|
printf("HUB ");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
user = user_get(chat->from_sid);
|
||||||
|
printf(" %s %s%s%s ", pm, brack1, user->name, brack2);
|
||||||
|
}
|
||||||
|
|
||||||
|
lines = list_create();
|
||||||
|
ret = split_string(chat->message, "\n", lines, 1);
|
||||||
|
|
||||||
|
line = (char*) list_get_first(lines);
|
||||||
|
|
||||||
|
ret = 0;
|
||||||
|
while (line)
|
||||||
|
{
|
||||||
|
if (ret > 0)
|
||||||
|
printf(" ");
|
||||||
|
printf("%s\n", line);
|
||||||
|
ret++;
|
||||||
|
line = (char*) list_get_next(lines);
|
||||||
|
}
|
||||||
|
|
||||||
|
list_clear(lines, &hub_free);
|
||||||
|
list_destroy(lines);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void status(const char* msg)
|
||||||
|
{
|
||||||
|
printf("*** %s\n", msg);
|
||||||
|
}
|
||||||
|
|
||||||
static int handle(struct ADC_client* client, enum ADC_client_callback_type type, struct ADC_client_callback_data* data)
|
static int handle(struct ADC_client* client, enum ADC_client_callback_type type, struct ADC_client_callback_data* data)
|
||||||
{
|
{
|
||||||
switch (type)
|
switch (type)
|
||||||
{
|
{
|
||||||
case ADC_CLIENT_CONNECTING:
|
case ADC_CLIENT_CONNECTING:
|
||||||
puts("*** Connecting...");
|
status("Connecting...");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ADC_CLIENT_CONNECTED:
|
case ADC_CLIENT_CONNECTED:
|
||||||
puts("*** Connected.");
|
status("Connected.");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ADC_CLIENT_DISCONNECTED:
|
case ADC_CLIENT_DISCONNECTED:
|
||||||
puts("*** Disconnected.");
|
status("Disconnected.");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ADC_CLIENT_SSL_HANDSHAKE:
|
case ADC_CLIENT_SSL_HANDSHAKE:
|
||||||
puts("*** SSL handshake.");
|
status("SSL handshake.");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ADC_CLIENT_LOGGING_IN:
|
case ADC_CLIENT_LOGGING_IN:
|
||||||
puts("*** Logging in...");
|
status("Logging in...");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ADC_CLIENT_PASSWORD_REQ:
|
case ADC_CLIENT_PASSWORD_REQ:
|
||||||
puts("*** Requesting password.");
|
status("Requesting password.");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ADC_CLIENT_LOGGED_IN:
|
case ADC_CLIENT_LOGGED_IN:
|
||||||
puts("*** Logged in.");
|
status("Logged in.");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ADC_CLIENT_LOGIN_ERROR:
|
case ADC_CLIENT_LOGIN_ERROR:
|
||||||
puts("*** Login error");
|
status("Login error");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
||||||
case ADC_CLIENT_MESSAGE:
|
case ADC_CLIENT_MESSAGE:
|
||||||
printf(" <%s> %s\n", sid_to_string(data->chat->from_sid), data->chat->message);
|
on_message(data->chat);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ADC_CLIENT_USER_JOIN:
|
case ADC_CLIENT_USER_JOIN:
|
||||||
printf(" JOIN: %s %s\n", sid_to_string(data->user->sid), data->user->name);
|
|
||||||
|
user_add(data->user);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ADC_CLIENT_USER_QUIT:
|
case ADC_CLIENT_USER_QUIT:
|
||||||
printf(" QUIT\n");
|
user_remove(data->quit);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ADC_CLIENT_SEARCH_REQ:
|
case ADC_CLIENT_SEARCH_REQ:
|
||||||
@@ -96,6 +166,8 @@ int main(int argc, char** argv)
|
|||||||
struct ADC_client client;
|
struct ADC_client client;
|
||||||
net_initialize();
|
net_initialize();
|
||||||
|
|
||||||
|
memset(g_usermap, 0, sizeof(g_usermap));
|
||||||
|
|
||||||
ADC_client_create(&client, "uhub-admin", "stresstester");
|
ADC_client_create(&client, "uhub-admin", "stresstester");
|
||||||
ADC_client_set_callback(&client, handle);
|
ADC_client_set_callback(&client, handle);
|
||||||
ADC_client_connect(&client, argv[1]);
|
ADC_client_connect(&client, argv[1]);
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* uhub - A tiny ADC p2p connection hub
|
* uhub - A tiny ADC p2p connection hub
|
||||||
* Copyright (C) 2007-2010, Jan Vidar Krey
|
* Copyright (C) 2007-2012, Jan Vidar Krey
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@@ -82,7 +82,7 @@ extern "C" {
|
|||||||
#include "core/eventid.h"
|
#include "core/eventid.h"
|
||||||
#include "core/eventqueue.h"
|
#include "core/eventqueue.h"
|
||||||
#include "core/netevent.h"
|
#include "core/netevent.h"
|
||||||
#include "core/hubio.h"
|
#include "core/ioqueue.h"
|
||||||
#include "core/user.h"
|
#include "core/user.h"
|
||||||
#include "core/usermanager.h"
|
#include "core/usermanager.h"
|
||||||
#include "core/route.h"
|
#include "core/route.h"
|
||||||
|
|||||||
38
src/version.h.in
Normal file
38
src/version.h.in
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
/*
|
||||||
|
* uhub - A tiny ADC p2p connection hub
|
||||||
|
* Copyright (C) 2007-2012, Jan Vidar Krey
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* THIS FILE IS AUTO-GENERATED BY CMAKE - DO NOT EDIT MANUALLY! */
|
||||||
|
|
||||||
|
#ifndef VERSION
|
||||||
|
#define VERSION "@UHUB_VERSION_MAJOR@.@UHUB_VERSION_MINOR@.@UHUB_VERSION_PATCH@"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define GIT_REVISION "@UHUB_REVISION@"
|
||||||
|
#define GIT_VERSION "@UHUB_GIT_VERSION@"
|
||||||
|
|
||||||
|
#ifndef PRODUCT
|
||||||
|
#define PRODUCT "uhub"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define REVISION GIT_REVISION
|
||||||
|
#define PRODUCT_STRING PRODUCT "/" GIT_VERSION
|
||||||
|
|
||||||
|
#ifndef COPYRIGHT
|
||||||
|
#define COPYRIGHT "Copyright (c) 2007-2012, Jan Vidar Krey <janvidar@extatic.org>"
|
||||||
|
#endif
|
||||||
23
version.h
23
version.h
@@ -1,23 +0,0 @@
|
|||||||
#if !defined(_MSC_VER)
|
|
||||||
#include "revision.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef PRODUCT
|
|
||||||
#define PRODUCT "uhub"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef VERSION
|
|
||||||
#define VERSION "0.4.0"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef GIT_REVISION
|
|
||||||
#define REVISION ""
|
|
||||||
#define PRODUCT_STRING PRODUCT "/" VERSION
|
|
||||||
#else
|
|
||||||
#define REVISION "git-" GIT_REVISION
|
|
||||||
#define PRODUCT_STRING PRODUCT "/" VERSION "-" REVISION
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef COPYRIGHT
|
|
||||||
#define COPYRIGHT "Copyright (c) 2007-2012, Jan Vidar Krey <janvidar@extatic.org>"
|
|
||||||
#endif
|
|
||||||
7
vs2010/.gitignore
vendored
7
vs2010/.gitignore
vendored
@@ -1,7 +0,0 @@
|
|||||||
*.vcproj.user
|
|
||||||
*.vcproj.filters
|
|
||||||
*.ncb
|
|
||||||
*.aps
|
|
||||||
*.suo
|
|
||||||
Debug
|
|
||||||
Release
|
|
||||||
@@ -1,73 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
|
||||||
<Configuration>Release</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup Label="Globals">
|
|
||||||
<ProjectGuid>{A6674BB3-1B23-4E99-AF9B-1CCDB4EB049A}</ProjectGuid>
|
|
||||||
<RootNamespace>mod_auth_simple</RootNamespace>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
||||||
<UseDebugLibraries>true</UseDebugLibraries>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<UseDebugLibraries>false</UseDebugLibraries>
|
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
||||||
<ImportGroup Label="ExtensionSettings">
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<PropertyGroup Label="UserMacros" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<IncludePath>$(SolutionDir)..\src;$(IncludePath)</IncludePath>
|
|
||||||
<LibraryPath>$(SolutionDir)vs2010\$(Configuration);$(LibraryPath)</LibraryPath>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<AdditionalDependencies>$(SolutionDir)\$(Configuration)\uhub_utils.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<Optimization>MaxSpeed</Optimization>
|
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="..\..\..\src\plugins\mod_auth_simple.c" />
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
||||||
<ImportGroup Label="ExtensionTargets">
|
|
||||||
</ImportGroup>
|
|
||||||
</Project>
|
|
||||||
@@ -1,75 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
|
||||||
<Configuration>Release</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup Label="Globals">
|
|
||||||
<ProjectGuid>{0EF03E84-2720-4616-A5BE-4D5737F68445}</ProjectGuid>
|
|
||||||
<RootNamespace>mod_auth_sqlite</RootNamespace>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
||||||
<UseDebugLibraries>true</UseDebugLibraries>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<UseDebugLibraries>false</UseDebugLibraries>
|
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
||||||
<ImportGroup Label="ExtensionSettings">
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<PropertyGroup Label="UserMacros" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<IncludePath>$(SolutionDir)..\src;$(IncludePath);$(SolutionDir)..\thirdparty\sqlite</IncludePath>
|
|
||||||
<LibraryPath>$(SolutionDir)vs2010\$(Configuration);$(LibraryPath)</LibraryPath>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<AdditionalDependencies>$(SolutionDir)\$(Configuration)\uhub_utils.lib;$(SolutionDir)\$(Configuration)\sqlite.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
<DelayLoadDLLs>
|
|
||||||
</DelayLoadDLLs>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<Optimization>MaxSpeed</Optimization>
|
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="..\..\..\src\plugins\mod_auth_sqlite.c" />
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
||||||
<ImportGroup Label="ExtensionTargets">
|
|
||||||
</ImportGroup>
|
|
||||||
</Project>
|
|
||||||
@@ -1,85 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
|
||||||
<Configuration>Release</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup Label="Globals">
|
|
||||||
<ProjectGuid>{9BBAEFDA-8E0E-4E7F-B8B6-0050432FC45B}</ProjectGuid>
|
|
||||||
<Keyword>Win32Proj</Keyword>
|
|
||||||
<RootNamespace>mod_example</RootNamespace>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
||||||
<UseDebugLibraries>true</UseDebugLibraries>
|
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
||||||
<UseDebugLibraries>false</UseDebugLibraries>
|
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
||||||
<ImportGroup Label="ExtensionSettings">
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<PropertyGroup Label="UserMacros" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<LinkIncremental>true</LinkIncremental>
|
|
||||||
<IncludePath>$(SolutionDir)..\src;$(IncludePath)</IncludePath>
|
|
||||||
<LibraryPath>$(SolutionDir)vs2010\$(Configuration);$(LibraryPath)</LibraryPath>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<LinkIncremental>false</LinkIncremental>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<PrecompiledHeader>
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;MOD_EXAMPLE_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<SubSystem>Windows</SubSystem>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<AdditionalDependencies>$(SolutionDir)\$(Configuration)\uhub_utils.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<PrecompiledHeader>
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<Optimization>MaxSpeed</Optimization>
|
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
||||||
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;MOD_EXAMPLE_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<SubSystem>Windows</SubSystem>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="..\..\..\src\plugins\mod_example.c" />
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
||||||
<ImportGroup Label="ExtensionTargets">
|
|
||||||
</ImportGroup>
|
|
||||||
</Project>
|
|
||||||
@@ -1,85 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
|
||||||
<Configuration>Release</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup Label="Globals">
|
|
||||||
<ProjectGuid>{9BBAEFDA-8E0E-4E7F-B8B6-00A3432FC45B}</ProjectGuid>
|
|
||||||
<Keyword>Win32Proj</Keyword>
|
|
||||||
<RootNamespace>mod_topic</RootNamespace>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
||||||
<UseDebugLibraries>true</UseDebugLibraries>
|
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
||||||
<UseDebugLibraries>false</UseDebugLibraries>
|
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
||||||
<ImportGroup Label="ExtensionSettings">
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<PropertyGroup Label="UserMacros" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<LinkIncremental>true</LinkIncremental>
|
|
||||||
<IncludePath>$(SolutionDir)..\src;$(IncludePath)</IncludePath>
|
|
||||||
<LibraryPath>$(SolutionDir)vs2010\$(Configuration);$(LibraryPath)</LibraryPath>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<LinkIncremental>false</LinkIncremental>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<PrecompiledHeader>
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;MOD_EXAMPLE_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<SubSystem>Windows</SubSystem>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<AdditionalDependencies>$(SolutionDir)\$(Configuration)\uhub_utils.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<PrecompiledHeader>
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<Optimization>MaxSpeed</Optimization>
|
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
||||||
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;MOD_EXAMPLE_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<SubSystem>Windows</SubSystem>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="..\..\..\src\plugins\mod_topic.c" />
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
||||||
<ImportGroup Label="ExtensionTargets">
|
|
||||||
</ImportGroup>
|
|
||||||
</Project>
|
|
||||||
78
vs2010/thirdparty/sqlite/sqlite.vcxproj
vendored
78
vs2010/thirdparty/sqlite/sqlite.vcxproj
vendored
@@ -1,78 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
|
||||||
<Configuration>Release</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="..\..\..\thirdparty\sqlite\shell.c" />
|
|
||||||
<ClCompile Include="..\..\..\thirdparty\sqlite\sqlite3.c" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClInclude Include="..\..\..\thirdparty\sqlite\sqlite3.h" />
|
|
||||||
<ClInclude Include="..\..\..\thirdparty\sqlite\sqlite3ext.h" />
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup Label="Globals">
|
|
||||||
<ProjectGuid>{A4FC9D62-D544-4D2A-88d7-A58529C3460B}</ProjectGuid>
|
|
||||||
<RootNamespace>sqlite</RootNamespace>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
||||||
<UseDebugLibraries>true</UseDebugLibraries>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<UseDebugLibraries>false</UseDebugLibraries>
|
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
||||||
<ImportGroup Label="ExtensionSettings">
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<PropertyGroup Label="UserMacros" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<IncludePath>$(SolutionDir)..\src;$(IncludePath)</IncludePath>
|
|
||||||
<LibraryPath>$(SolutionDir)vs2010\$(Configuration);$(LibraryPath)</LibraryPath>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<AdditionalDependencies>$(SolutionDir)\$(Configuration)\uhub_utils.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<Optimization>MaxSpeed</Optimization>
|
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
||||||
<ImportGroup Label="ExtensionTargets">
|
|
||||||
</ImportGroup>
|
|
||||||
</Project>
|
|
||||||
@@ -1,85 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
|
||||||
<Configuration>Release</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup Label="Globals">
|
|
||||||
<ProjectGuid>{E92EB860-AE9E-4532-A75F-0929A7BCF6D0}</ProjectGuid>
|
|
||||||
<Keyword>Win32Proj</Keyword>
|
|
||||||
<RootNamespace>uhubpasswd</RootNamespace>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<UseDebugLibraries>true</UseDebugLibraries>
|
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<UseDebugLibraries>false</UseDebugLibraries>
|
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
||||||
<ImportGroup Label="ExtensionSettings">
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<PropertyGroup Label="UserMacros" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<LinkIncremental>true</LinkIncremental>
|
|
||||||
<LibraryPath>$(SolutionDir)vs2010\$(Configuration);$(LibraryPath)</LibraryPath>
|
|
||||||
<IncludePath>$(SolutionDir)..\src;$(IncludePath);$(SolutionDir)..\thirdparty\sqlite</IncludePath>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<LinkIncremental>false</LinkIncremental>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<PrecompiledHeader>
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<SubSystem>Console</SubSystem>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<AdditionalDependencies>$(SolutionDir)\$(Configuration)\uhub_utils.lib;$(SolutionDir)\$(Configuration)\sqlite.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<PrecompiledHeader>
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<Optimization>MaxSpeed</Optimization>
|
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
||||||
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<SubSystem>Console</SubSystem>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="..\..\src\tools\uhub-passwd.c" />
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
||||||
<ImportGroup Label="ExtensionTargets">
|
|
||||||
</ImportGroup>
|
|
||||||
</Project>
|
|
||||||
@@ -1,83 +0,0 @@
|
|||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 11.00
|
|
||||||
# Visual C++ Express 2010
|
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "uhub", "uhub.vcxproj", "{98D8BFE9-DACD-40E1-B7BE-C9079ABF832E}"
|
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
|
||||||
{0A3C1519-D877-47D9-A82E-40AC1BC79D75} = {0A3C1519-D877-47D9-A82E-40AC1BC79D75}
|
|
||||||
EndProjectSection
|
|
||||||
EndProject
|
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "uhub_utils", "uhub_utils\uhub_utils.vcxproj", "{0A3C1519-D877-47D9-A82E-40AC1BC79D75}"
|
|
||||||
EndProject
|
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mod_auth_simple", "plugins\mod_auth_simple\mod_auth_simple.vcxproj", "{A6674BB3-1B23-4E99-AF9B-1CCDB4EB049A}"
|
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
|
||||||
{0A3C1519-D877-47D9-A82E-40AC1BC79D75} = {0A3C1519-D877-47D9-A82E-40AC1BC79D75}
|
|
||||||
EndProjectSection
|
|
||||||
EndProject
|
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mod_example", "plugins\mod_example\mod_example.vcxproj", "{9BBAEFDA-8E0E-4E7F-B8B6-0050432FC45B}"
|
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
|
||||||
{0A3C1519-D877-47D9-A82E-40AC1BC79D75} = {0A3C1519-D877-47D9-A82E-40AC1BC79D75}
|
|
||||||
EndProjectSection
|
|
||||||
EndProject
|
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mod_auth_sqlite", "plugins\mod_auth_sqlite\mod_auth_sqlite.vcxproj", "{0EF03E84-2720-4616-A5BE-4D5737F68445}"
|
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
|
||||||
{0A3C1519-D877-47D9-A82E-40AC1BC79D75} = {0A3C1519-D877-47D9-A82E-40AC1BC79D75}
|
|
||||||
{A4FC9D62-D544-4D2A-88D7-A58529C3460B} = {A4FC9D62-D544-4D2A-88D7-A58529C3460B}
|
|
||||||
EndProjectSection
|
|
||||||
EndProject
|
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sqlite", "thirdparty\sqlite\sqlite.vcxproj", "{A4FC9D62-D544-4D2A-88D7-A58529C3460B}"
|
|
||||||
EndProject
|
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "uhub-passwd", "uhub-passwd\uhub-passwd.vcxproj", "{E92EB860-AE9E-4532-A75F-0929A7BCF6D0}"
|
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
|
||||||
{0A3C1519-D877-47D9-A82E-40AC1BC79D75} = {0A3C1519-D877-47D9-A82E-40AC1BC79D75}
|
|
||||||
{A4FC9D62-D544-4D2A-88D7-A58529C3460B} = {A4FC9D62-D544-4D2A-88D7-A58529C3460B}
|
|
||||||
EndProjectSection
|
|
||||||
EndProject
|
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mod_topic", "plugins\mod_topic\mod_topic.vcxproj", "{9BBAEFDA-8E0E-4E7F-B8B6-00A3432FC45B}"
|
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
|
||||||
{0A3C1519-D877-47D9-A82E-40AC1BC79D75} = {0A3C1519-D877-47D9-A82E-40AC1BC79D75}
|
|
||||||
{98D8BFE9-DACD-40E1-B7BE-C9079ABF832E} = {98D8BFE9-DACD-40E1-B7BE-C9079ABF832E}
|
|
||||||
EndProjectSection
|
|
||||||
EndProject
|
|
||||||
Global
|
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
||||||
Debug|Win32 = Debug|Win32
|
|
||||||
Release|Win32 = Release|Win32
|
|
||||||
EndGlobalSection
|
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
||||||
{98D8BFE9-DACD-40E1-B7BE-C9079ABF832E}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
||||||
{98D8BFE9-DACD-40E1-B7BE-C9079ABF832E}.Debug|Win32.Build.0 = Debug|Win32
|
|
||||||
{98D8BFE9-DACD-40E1-B7BE-C9079ABF832E}.Release|Win32.ActiveCfg = Release|Win32
|
|
||||||
{98D8BFE9-DACD-40E1-B7BE-C9079ABF832E}.Release|Win32.Build.0 = Release|Win32
|
|
||||||
{0A3C1519-D877-47D9-A82E-40AC1BC79D75}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
||||||
{0A3C1519-D877-47D9-A82E-40AC1BC79D75}.Debug|Win32.Build.0 = Debug|Win32
|
|
||||||
{0A3C1519-D877-47D9-A82E-40AC1BC79D75}.Release|Win32.ActiveCfg = Release|Win32
|
|
||||||
{0A3C1519-D877-47D9-A82E-40AC1BC79D75}.Release|Win32.Build.0 = Release|Win32
|
|
||||||
{A6674BB3-1B23-4E99-AF9B-1CCDB4EB049A}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
||||||
{A6674BB3-1B23-4E99-AF9B-1CCDB4EB049A}.Debug|Win32.Build.0 = Debug|Win32
|
|
||||||
{A6674BB3-1B23-4E99-AF9B-1CCDB4EB049A}.Release|Win32.ActiveCfg = Release|Win32
|
|
||||||
{A6674BB3-1B23-4E99-AF9B-1CCDB4EB049A}.Release|Win32.Build.0 = Release|Win32
|
|
||||||
{9BBAEFDA-8E0E-4E7F-B8B6-0050432FC45B}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
||||||
{9BBAEFDA-8E0E-4E7F-B8B6-0050432FC45B}.Debug|Win32.Build.0 = Debug|Win32
|
|
||||||
{9BBAEFDA-8E0E-4E7F-B8B6-0050432FC45B}.Release|Win32.ActiveCfg = Release|Win32
|
|
||||||
{9BBAEFDA-8E0E-4E7F-B8B6-0050432FC45B}.Release|Win32.Build.0 = Release|Win32
|
|
||||||
{0EF03E84-2720-4616-A5BE-4D5737F68445}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
||||||
{0EF03E84-2720-4616-A5BE-4D5737F68445}.Debug|Win32.Build.0 = Debug|Win32
|
|
||||||
{0EF03E84-2720-4616-A5BE-4D5737F68445}.Release|Win32.ActiveCfg = Release|Win32
|
|
||||||
{0EF03E84-2720-4616-A5BE-4D5737F68445}.Release|Win32.Build.0 = Release|Win32
|
|
||||||
{A4FC9D62-D544-4D2A-88D7-A58529C3460B}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
||||||
{A4FC9D62-D544-4D2A-88D7-A58529C3460B}.Debug|Win32.Build.0 = Debug|Win32
|
|
||||||
{A4FC9D62-D544-4D2A-88D7-A58529C3460B}.Release|Win32.ActiveCfg = Release|Win32
|
|
||||||
{A4FC9D62-D544-4D2A-88D7-A58529C3460B}.Release|Win32.Build.0 = Release|Win32
|
|
||||||
{E92EB860-AE9E-4532-A75F-0929A7BCF6D0}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
||||||
{E92EB860-AE9E-4532-A75F-0929A7BCF6D0}.Debug|Win32.Build.0 = Debug|Win32
|
|
||||||
{E92EB860-AE9E-4532-A75F-0929A7BCF6D0}.Release|Win32.ActiveCfg = Release|Win32
|
|
||||||
{E92EB860-AE9E-4532-A75F-0929A7BCF6D0}.Release|Win32.Build.0 = Release|Win32
|
|
||||||
{9BBAEFDA-8E0E-4E7F-B8B6-00A3432FC45B}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
||||||
{9BBAEFDA-8E0E-4E7F-B8B6-00A3432FC45B}.Debug|Win32.Build.0 = Debug|Win32
|
|
||||||
{9BBAEFDA-8E0E-4E7F-B8B6-00A3432FC45B}.Release|Win32.ActiveCfg = Release|Win32
|
|
||||||
{9BBAEFDA-8E0E-4E7F-B8B6-00A3432FC45B}.Release|Win32.Build.0 = Release|Win32
|
|
||||||
EndGlobalSection
|
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
|
||||||
HideSolutionNode = FALSE
|
|
||||||
EndGlobalSection
|
|
||||||
EndGlobal
|
|
||||||
@@ -1,151 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
|
||||||
<Configuration>Release</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup Label="Globals">
|
|
||||||
<ProjectGuid>{98D8BFE9-DACD-40E1-B7BE-C9079ABF832E}</ProjectGuid>
|
|
||||||
<Keyword>Win32Proj</Keyword>
|
|
||||||
<RootNamespace>uhub</RootNamespace>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<UseDebugLibraries>true</UseDebugLibraries>
|
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<UseDebugLibraries>false</UseDebugLibraries>
|
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
||||||
<ImportGroup Label="ExtensionSettings">
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<PropertyGroup Label="UserMacros" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<LinkIncremental>true</LinkIncremental>
|
|
||||||
<IncludePath>$(SolutionDir)..\src;$(IncludePath)</IncludePath>
|
|
||||||
<LibraryPath>$(SolutionDir)\$(Configuration);$(LibraryPath)</LibraryPath>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<LinkIncremental>false</LinkIncremental>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories>$(projectDir)..\src\</AdditionalIncludeDirectories>
|
|
||||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
|
||||||
<CompileAsManaged>false</CompileAsManaged>
|
|
||||||
<CompileAs>CompileAsC</CompileAs>
|
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<SubSystem>Console</SubSystem>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<AdditionalDependencies>kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies);ws2_32.lib;uhub_utils.lib</AdditionalDependencies>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<PrecompiledHeader>Use</PrecompiledHeader>
|
|
||||||
<Optimization>MaxSpeed</Optimization>
|
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
||||||
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<SubSystem>Console</SubSystem>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="..\src\adc\message.c" />
|
|
||||||
<ClCompile Include="..\src\adc\sid.c" />
|
|
||||||
<ClCompile Include="..\src\core\auth.c" />
|
|
||||||
<ClCompile Include="..\src\core\commands.c" />
|
|
||||||
<ClCompile Include="..\src\core\command_parser.c" />
|
|
||||||
<ClCompile Include="..\src\core\config.c" />
|
|
||||||
<ClCompile Include="..\src\core\eventqueue.c" />
|
|
||||||
<ClCompile Include="..\src\core\hub.c" />
|
|
||||||
<ClCompile Include="..\src\core\hubevent.c" />
|
|
||||||
<ClCompile Include="..\src\core\hubio.c" />
|
|
||||||
<ClCompile Include="..\src\core\inf.c" />
|
|
||||||
<ClCompile Include="..\src\core\main.c" />
|
|
||||||
<ClCompile Include="..\src\core\netevent.c" />
|
|
||||||
<ClCompile Include="..\src\core\plugincallback.c" />
|
|
||||||
<ClCompile Include="..\src\core\plugininvoke.c" />
|
|
||||||
<ClCompile Include="..\src\core\pluginloader.c" />
|
|
||||||
<ClCompile Include="..\src\core\probe.c" />
|
|
||||||
<ClCompile Include="..\src\core\route.c" />
|
|
||||||
<ClCompile Include="..\src\core\user.c" />
|
|
||||||
<ClCompile Include="..\src\core\usermanager.c" />
|
|
||||||
<ClCompile Include="..\src\network\backend.c" />
|
|
||||||
<ClCompile Include="..\src\network\connection.c" />
|
|
||||||
<ClCompile Include="..\src\network\epoll.c" />
|
|
||||||
<ClCompile Include="..\src\network\kqueue.c" />
|
|
||||||
<ClCompile Include="..\src\network\network.c" />
|
|
||||||
<ClCompile Include="..\src\network\select.c" />
|
|
||||||
<ClCompile Include="..\src\network\timeout.c" />
|
|
||||||
<ClCompile Include="..\src\network\timer.c" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClInclude Include="..\src\adc\adcconst.h" />
|
|
||||||
<ClInclude Include="..\src\adc\message.h" />
|
|
||||||
<ClInclude Include="..\src\adc\sid.h" />
|
|
||||||
<ClInclude Include="..\src\core\auth.h" />
|
|
||||||
<ClInclude Include="..\src\core\commands.h" />
|
|
||||||
<ClInclude Include="..\src\core\commands_builtin.h" />
|
|
||||||
<ClInclude Include="..\src\core\command_parser.h" />
|
|
||||||
<ClInclude Include="..\src\core\config.h" />
|
|
||||||
<ClInclude Include="..\src\core\eventid.h" />
|
|
||||||
<ClInclude Include="..\src\core\eventqueue.h" />
|
|
||||||
<ClInclude Include="..\src\core\gen_config.h" />
|
|
||||||
<ClInclude Include="..\src\core\hub.h" />
|
|
||||||
<ClInclude Include="..\src\core\hubevent.h" />
|
|
||||||
<ClInclude Include="..\src\core\hubio.h" />
|
|
||||||
<ClInclude Include="..\src\core\inf.h" />
|
|
||||||
<ClInclude Include="..\src\core\netevent.h" />
|
|
||||||
<ClInclude Include="..\src\core\plugincallback.h" />
|
|
||||||
<ClInclude Include="..\src\core\plugininvoke.h" />
|
|
||||||
<ClInclude Include="..\src\core\pluginloader.h" />
|
|
||||||
<ClInclude Include="..\src\core\probe.h" />
|
|
||||||
<ClInclude Include="..\src\core\route.h" />
|
|
||||||
<ClInclude Include="..\src\core\user.h" />
|
|
||||||
<ClInclude Include="..\src\core\usermanager.h" />
|
|
||||||
<ClInclude Include="..\src\network\backend.h" />
|
|
||||||
<ClInclude Include="..\src\network\common.h" />
|
|
||||||
<ClInclude Include="..\src\network\connection.h" />
|
|
||||||
<ClInclude Include="..\src\network\network.h" />
|
|
||||||
<ClInclude Include="..\src\network\timeout.h" />
|
|
||||||
<ClInclude Include="..\src\plugin_api\command_api.h" />
|
|
||||||
<ClInclude Include="..\src\plugin_api\handle.h" />
|
|
||||||
<ClInclude Include="..\src\system.h" />
|
|
||||||
<ClInclude Include="..\src\uhub.h" />
|
|
||||||
<ClInclude Include="..\version.h" />
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
||||||
<ImportGroup Label="ExtensionTargets">
|
|
||||||
</ImportGroup>
|
|
||||||
</Project>
|
|
||||||
@@ -1,98 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
|
||||||
<Configuration>Release</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup Label="Globals">
|
|
||||||
<ProjectGuid>{0A3C1519-D877-47D9-A82E-40AC1BC79D75}</ProjectGuid>
|
|
||||||
<RootNamespace>uhub_utils</RootNamespace>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
||||||
<UseDebugLibraries>true</UseDebugLibraries>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<UseDebugLibraries>false</UseDebugLibraries>
|
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
||||||
<ImportGroup Label="ExtensionSettings">
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<PropertyGroup Label="UserMacros" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<IncludePath>$(SolutionDir)..\src;$(IncludePath)</IncludePath>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<AdditionalIncludeDirectories>
|
|
||||||
</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<Optimization>MaxSpeed</Optimization>
|
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="..\..\src\util\cbuffer.c" />
|
|
||||||
<ClCompile Include="..\..\src\util\config_token.c" />
|
|
||||||
<ClCompile Include="..\..\src\util\credentials.c" />
|
|
||||||
<ClCompile Include="..\..\src\util\floodctl.c" />
|
|
||||||
<ClCompile Include="..\..\src\util\getopt.c" />
|
|
||||||
<ClCompile Include="..\..\src\util\ipcalc.c" />
|
|
||||||
<ClCompile Include="..\..\src\util\list.c" />
|
|
||||||
<ClCompile Include="..\..\src\util\log.c" />
|
|
||||||
<ClCompile Include="..\..\src\util\memory.c" />
|
|
||||||
<ClCompile Include="..\..\src\util\misc.c" />
|
|
||||||
<ClCompile Include="..\..\src\util\rbtree.c" />
|
|
||||||
<ClCompile Include="..\..\src\util\tiger.c" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClInclude Include="..\..\src\util\cbuffer.h" />
|
|
||||||
<ClInclude Include="..\..\src\util\config_token.h" />
|
|
||||||
<ClInclude Include="..\..\src\util\credentials.h" />
|
|
||||||
<ClInclude Include="..\..\src\util\floodctl.h" />
|
|
||||||
<ClInclude Include="..\..\src\util\getopt.h" />
|
|
||||||
<ClInclude Include="..\..\src\util\ipcalc.h" />
|
|
||||||
<ClInclude Include="..\..\src\util\list.h" />
|
|
||||||
<ClInclude Include="..\..\src\util\log.h" />
|
|
||||||
<ClInclude Include="..\..\src\util\memory.h" />
|
|
||||||
<ClInclude Include="..\..\src\util\misc.h" />
|
|
||||||
<ClInclude Include="..\..\src\util\rbtree.h" />
|
|
||||||
<ClInclude Include="..\..\src\util\tiger.h" />
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
||||||
<ImportGroup Label="ExtensionTargets">
|
|
||||||
</ImportGroup>
|
|
||||||
</Project>
|
|
||||||
Reference in New Issue
Block a user