diff --git a/.cproject b/.cproject new file mode 100644 index 0000000..234cdba --- /dev/null +++ b/.cproject @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + make + cliever + true + true + true + + + make + + clean + true + true + true + + + make + + distclean + true + true + true + + + make + + all + true + true + true + + + make + + tests + true + true + true + + + make + + clean + true + true + true + + + + diff --git a/.project b/.project new file mode 100644 index 0000000..b550736 --- /dev/null +++ b/.project @@ -0,0 +1,27 @@ + + + git + + + + + + org.eclipse.cdt.managedbuilder.core.genmakebuilder + clean,full,incremental, + + + + + org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder + full,incremental, + + + + + + org.eclipse.cdt.core.cnature + org.eclipse.cdt.core.ccnature + org.eclipse.cdt.managedbuilder.core.managedBuildNature + org.eclipse.cdt.managedbuilder.core.ScannerConfigNature + + diff --git a/.settings/language.settings.xml b/.settings/language.settings.xml new file mode 100644 index 0000000..45ee45b --- /dev/null +++ b/.settings/language.settings.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/AusRegCliever/Makefile b/AusRegCliever/Makefile new file mode 100644 index 0000000..4585e1c --- /dev/null +++ b/AusRegCliever/Makefile @@ -0,0 +1,81 @@ +LOCATION=authoring +# +# LOCATION just reflects accidents of different host +# setups, it could be made consistent acroos different +# dev envs if any. +# +# +# Boost, the AusReg client toolkit and the latter's dependencies +# are initially all that's required. +# +CC=g++ +Cc=gcc + + +#ifeq ($(LOCATION),authoring) + BOSTLIB=-L/usr/local/lib/boost + BOSINCL=-L/usr/local/include/boost +#endif + +SLIBS= -L/usr/local/lib $(BOSTLIB) $(LOG4LIB) -l boost_system -l boost_thread + +ARTKFLAGS=-shared -fPIC -Wl,-soname,libAusRegEPPTK.so + +ifeq ($(LOCATION),authoring) +SINCL= -I src/include -I /usr/local/include/log4cpp $(BOSINCL) +CFLAGS= -DCURRENT_DEBUG=1000 +CINCL= -I src/include -I /usr/local/include/log4cpp +endif + +CLIBS= -L$(USRLIB) + + +CLFLAGS= -Wall -Wundef -Wpointer-arith -Wshadow \ + -Wcast-align -Winline -Wmissing-declarations -Wredundant-decls \ + -Wmissing-prototypes -Wnested-externs \ + -Wstrict-prototypes -Waggregate-return -Wno-implicit + +# --- targets +# Because of the dependency on introspection of the +# current XMLRPC API, all doesn't include md_client. +# +# If MD is running do make cleanclient;make client;make all +# to do an actual complete rebuild of the entire unix system. +# + +ifeq ($(LOCATION),authoring) +all: cliever +endif + +cliever: build/drde-cliever + +.c.o: + $(Cc) -c $(CLFLAGS) -o $< + +build/cliever.o: server/cliever.cpp include/*.h + $(CC) $(CFLAGS) server/cliever.cpp -c -o build/cliever.o $(SINCL) + +bin/drde-cliever: build/drde-cliever.o build/clieverLogger.o + $(CC) $(CFLAGS) -o bin/md $(SINCL) $(LIBS) build/drde-cliever.o build/clieverLogger.o $(SLIBS) + +doxygen/index.html: etc/doxygen.config + doxygen etc/doxygen.config + +# --- rebuild on copy to a new host +distclean: + clrbak + rm -rf build + rm -rf doxygen + mkdir doxygen + mkdir build + touch etc/doxygen.config + +clean: + clrbak + find ./build -name "*.o" -print | perl -ne "print;chop;unlink" + find ./build -name "*.rpo" -print | perl -ne "print;chop;unlink" + rm build/drde-cliever + + + + diff --git a/AusRegCliever/etc/doxygen.config b/AusRegCliever/etc/doxygen.config new file mode 100644 index 0000000..2002ff1 --- /dev/null +++ b/AusRegCliever/etc/doxygen.config @@ -0,0 +1,1416 @@ +# Doxyfile 1.5.6 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project +# +# All text after a hash (#) is considered a comment and will be ignored +# The format is: +# TAG = value [value, ...] +# For lists items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (" ") + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# http://www.gnu.org/software/libiconv for the list of possible encodings. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded +# by quotes) that should identify the project. + +PROJECT_NAME = + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or +# if some version control system is used. + +PROJECT_NUMBER = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location +# where doxygen was started. If left blank the current directory will be used. + +OUTPUT_DIRECTORY = doxygen + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create +# 4096 sub-directories (in 2 levels) under the output directory of each output +# format and will distribute the generated files over these directories. +# Enabling this option can be useful when feeding doxygen a huge amount of +# source files, where putting all generated files in the same directory would +# otherwise cause performance problems for the file system. + +CREATE_SUBDIRS = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, +# Croatian, Czech, Danish, Dutch, Farsi, Finnish, French, German, Greek, +# Hungarian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, Polish, +# Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, +# and Ukrainian. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). +# Set to NO to disable this. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator +# that is used to form the text in various listings. Each string +# in this list, if found as the leading text of the brief description, will be +# stripped from the text and the result after processing the whole list, is +# used as the annotated text. Otherwise, the brief description is used as-is. +# If left blank, the following values are used ("$name" is automatically +# replaced with the name of the entity): "The $name class" "The $name widget" +# "The $name file" "is" "provides" "specifies" "contains" +# "represents" "a" "an" "the" + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set +# to NO the shortest path that makes the file name unique will be used. + +FULL_PATH_NAMES = YES + +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user-defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the +# path to strip. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of +# the path mentioned in the documentation of a class, which tells +# the reader which header file to include in order to use a class. +# If left blank only the name of the header file containing the class +# definition is used. Otherwise one should specify the include paths that +# are normally passed to the compiler using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful is your file systems +# doesn't support long names like on DOS, Mac, or CD-ROM. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like regular Qt-style comments +# (thus requiring an explicit @brief command for a brief description.) + +JAVADOC_AUTOBRIEF = NO + +# If the QT_AUTOBRIEF tag is set to YES then Doxygen will +# interpret the first line (until the first dot) of a Qt-style +# comment as the brief description. If set to NO, the comments +# will behave just like regular Qt-style comments (thus requiring +# an explicit \brief command for a brief description.) + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen +# treat a multi-line C++ special comment block (i.e. a block of //! or /// +# comments) as a brief description. This used to be the default behaviour. +# The new default is to treat a multi-line C++ comment block as a detailed +# description. Set this tag to YES if you prefer the old behaviour instead. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the DETAILS_AT_TOP tag is set to YES then Doxygen +# will output the detailed description near the top, like JavaDoc. +# If set to NO, the detailed description appears after the member +# documentation. + +DETAILS_AT_TOP = NO + +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it +# re-implements. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce +# a new page for each member. If set to NO, the documentation of a member will +# be part of the file/class/namespace that contains it. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# Doxygen uses this value to replace tabs by spaces in code fragments. + +TAB_SIZE = 8 + +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user-defined paragraph with heading "Side Effects:". +# You can put \n's in the value part of an alias to insert newlines. + +ALIASES = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C +# sources only. Doxygen will then generate output that is more tailored for C. +# For instance, some of the names that are used will be different. The list +# of all members will be omitted, etc. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java +# sources only. Doxygen will then generate output that is more tailored for +# Java. For instance, namespaces will be presented as packages, qualified +# scopes will look different, etc. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources only. Doxygen will then generate output that is more tailored for +# Fortran. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for +# VHDL. + +OPTIMIZE_OUTPUT_VHDL = NO + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should +# set this tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. +# func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. +# Doxygen will parse them like normal C++ but will assume all classes use public +# instead of private inheritance when no explicit protection keyword is present. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate getter +# and setter methods for a property. Setting this option to YES (the default) +# will make doxygen to replace the get and set methods by a property in the +# documentation. This will only work if the methods are indeed getting or +# setting a simple type. If this is not the case, or you want to show the +# methods anyway, you should set this option to NO. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES (the default) to allow class member groups of +# the same type (for instance a group of public functions) to be put as a +# subgroup of that type (e.g. under the Public Functions section). Set it to +# NO to prevent subgrouping. Alternatively, this can be done per class using +# the \nosubgrouping command. + +SUBGROUPING = YES + +# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum +# is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically +# be useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. + +TYPEDEF_HIDES_STRUCT = NO + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless +# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# will be included in the documentation. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file +# will be included in the documentation. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. +# If set to NO only classes defined in header files are included. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. When set to YES local +# methods, which are defined in the implementation section but not in +# the interface are included in the documentation. +# If set to NO (the default) only methods in the interface are included. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base +# name of the file that contains the anonymous namespace. By default +# anonymous namespace are hidden. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. +# This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these classes will be included in the various +# overviews. This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +# friend (class|struct|union) declarations. +# If set to NO (the default) these declarations will be included in the +# documentation. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +# documentation blocks found inside the body of a function. +# If set to NO (the default) these blocks will be appended to the +# function's detailed documentation block. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. +# Set it to YES to include the internal documentation. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the +# documentation. If set to YES the scope will be hidden. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put a list of the files that are included by a file in the documentation +# of that file. + +SHOW_INCLUDE_FILES = YES + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# is inserted in the documentation for inline members. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in +# declaration order. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the +# brief documentation of file, namespace and class members alphabetically +# by member name. If set to NO (the default) the members will appear in +# declaration order. + +SORT_BRIEF_DOCS = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the +# hierarchy of group names into alphabetical order. If set to NO (the default) +# the group names will appear in their defined order. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be +# sorted by fully-qualified names, including namespaces. If set to +# NO (the default), the class list will be sorted only by class name, +# not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the +# alphabetical list. + +SORT_BY_SCOPE_NAME = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo +# commands in the documentation. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test +# commands in the documentation. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug +# commands in the documentation. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or +# disable (NO) the deprecated list. This list is created by putting +# \deprecated commands in the documentation. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional +# documentation sections, marked by \if sectionname ... \endif. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or define consists of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and defines in the +# documentation can be controlled using \showinitializer or \hideinitializer +# command in the documentation regardless of this setting. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the +# list will mention the files that were used to generate the documentation. + +SHOW_USED_FILES = YES + +# If the sources in your project are distributed over multiple directories +# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy +# in the documentation. The default is NO. + +SHOW_DIRECTORIES = NO + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. +# This will remove the Files entry from the Quick Index and from the +# Folder Tree View (if specified). The default is YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the +# Namespaces page. This will remove the Namespaces entry from the Quick Index +# and from the Folder Tree View (if specified). The default is YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command , where is the value of +# the FILE_VERSION_FILTER tag, and is the name of an input file +# provided by doxygen. Whatever the program writes to standard output +# is used as the file version. See the manual for examples. + +FILE_VERSION_FILTER = + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated +# by doxygen. Possible values are YES and NO. If left blank NO is used. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank +# NO is used. + +WARNINGS = YES + +# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings +# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. + +WARN_IF_UNDOCUMENTED = YES + +# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some +# parameters in a documented function, or documenting parameters that +# don't exist or using markup commands wrongly. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be abled to get warnings for +# functions that are documented, but have no documentation for their parameters +# or return value. If set to NO (the default) doxygen will only warn about +# wrong or incomplete parameter documentation, but not about the absence of +# documentation. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that +# doxygen can produce. The string should contain the $file, $line, and $text +# tags, which will be replaced by the file and line number from which the +# warning originated and the warning text. Optionally the format may contain +# $version, which will be replaced by the version of the file (if it could +# be obtained via FILE_VERSION_FILTER) + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning +# and error messages should be written. If left blank the output is written +# to stderr. + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag can be used to specify the files and/or directories that contain +# documented source files. You may enter file names like "myfile.cpp" or +# directories like "/usr/src/myproject". Separate the files or directories +# with spaces. + +INPUT = src/client src/server src/include src/clipsrules src/clipsmm src/COOL + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is +# also the default input encoding. Doxygen uses libiconv (or the iconv built +# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for +# the list of possible encodings. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx +# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 + +FILE_PATTERNS = + +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. +# If left blank NO is used. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used select whether or not files or +# directories that are symbolic links (a Unix filesystem feature) are excluded +# from the input. + +EXCLUDE_SYMLINKS = YES + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. Note that the wildcards are matched +# against the file with absolute path, so to exclude all test directories +# for example use the pattern */test/* + +EXCLUDE_PATTERNS = */test/* + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or +# directories that contain example code fragments that are included (see +# the \include command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank all files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude +# commands irrespective of the value of the RECURSIVE tag. +# Possible values are YES and NO. If left blank NO is used. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see +# the \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command , where +# is the value of the INPUT_FILTER tag, and is the name of an +# input file. Doxygen will then use the output that the filter program writes +# to standard output. If FILTER_PATTERNS is specified, this tag will be +# ignored. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: +# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further +# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER +# is applied to all files. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source +# files to browse (i.e. when SOURCE_BROWSER is set to YES). + +FILTER_SOURCE_FILES = NO + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will +# be generated. Documented entities will be cross-referenced with these sources. +# Note: To get rid of all source code in the generated output, make sure also +# VERBATIM_HEADERS is set to NO. + +SOURCE_BROWSER = YES +# Setting the INLINE_SOURCES tag to YES will include the body +# of functions and classes directly in the documentation. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code +# fragments. Normal C and C++ comments will always remain visible. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES +# then for each documented function all documented +# functions referencing it will be listed. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES +# then for each documented function all documented entities +# called/used by that function will be listed. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) +# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from +# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will +# link to the source code. Otherwise they will link to the documentstion. + +REFERENCES_LINK_SOURCE = YES + +# If the USE_HTAGS tag is set to YES then the references to source code +# will point to the HTML generated by the htags(1) tool instead of doxygen +# built-in source browser. The htags tool is part of GNU's global source +# tagging system (see http://www.gnu.org/software/global/global.html). You +# will need version 4.8.6 or higher. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen +# will generate a verbatim copy of the header file for each class for +# which an include is specified. Set to NO to disable this. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index +# of all compounds will be generated. Enable this if the project +# contains a lot of classes, structs, unions or interfaces. + +ALPHABETICAL_INDEX = NO + +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# in which this list will be split (can be a number in the range [1..20]) + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all +# classes will be put under the same header in the alphabetical index. +# The IGNORE_PREFIX tag can be used to specify one or more prefixes that +# should be ignored while generating the index headers. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# generate HTML output. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `html' will be used as the default path. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank +# doxygen will generate files with .html extension. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a +# standard header. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a +# standard footer. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading +# style sheet that is used by each HTML page. It can be used to +# fine-tune the look of the HTML output. If the tag is left blank doxygen +# will generate a default style sheet. Note that doxygen will try to copy +# the style sheet file to the HTML output directory, so don't put your own +# stylesheet in the HTML output directory as well, or it will be erased! + +HTML_STYLESHEET = + +# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, +# files or namespaces will be aligned in HTML using tables. If set to +# NO a bullet list will be used. + +HTML_ALIGN_MEMBERS = YES + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) +# of the generated HTML documentation. + +GENERATE_HTMLHELP = NO + +# If the GENERATE_DOCSET tag is set to YES, additional index files +# will be generated that can be used as input for Apple's Xcode 3 +# integrated development environment, introduced with OSX 10.5 (Leopard). +# To create a documentation set, doxygen will generate a Makefile in the +# HTML output directory. Running make will produce the docset in that +# directory and running "make install" will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find +# it at startup. + +GENERATE_DOCSET = NO + +# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the +# feed. A documentation feed provides an umbrella under which multiple +# documentation sets from a single provider (such as a company or product suite) +# can be grouped. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that +# should uniquely identify the documentation set bundle. This should be a +# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen +# will append .docset to the name. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. For this to work a browser that supports +# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox +# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). + +HTML_DYNAMIC_SECTIONS = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can +# be used to specify the file name of the resulting .chm file. You +# can add a path in front of the file if the result should not be +# written to the html output directory. + +CHM_FILE = + +# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can +# be used to specify the location (absolute path including file name) of +# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run +# the HTML help compiler on the generated index.hhp. + +HHC_LOCATION = + +# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag +# controls if a separate .chi index file is generated (YES) or that +# it should be included in the master .chm file (NO). + +GENERATE_CHI = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING +# is used to encode HtmlHelp index (hhk), content (hhc) and project file +# content. + +CHM_INDEX_ENCODING = + +# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag +# controls whether a binary table of contents is generated (YES) or a +# normal table of contents (NO) in the .chm file. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members +# to the contents of the HTML help documentation and to the tree view. + +TOC_EXPAND = NO + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index at +# top of each HTML page. The value NO (the default) enables the index and +# the value YES disables it. + +DISABLE_INDEX = NO + +# This tag can be used to set the number of enum values (range [1..20]) +# that doxygen will group on one line in the generated HTML documentation. + +ENUM_VALUES_PER_LINE = 4 + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. +# If the tag value is set to FRAME, a side panel will be generated +# containing a tree-like index structure (just like the one that +# is generated for HTML Help). For this to work a browser that supports +# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, +# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are +# probably better off using the HTML help feature. Other possible values +# for this tag are: HIERARCHIES, which will generate the Groups, Directories, +# and Class Hiererachy pages using a tree view instead of an ordered list; +# ALL, which combines the behavior of FRAME and HIERARCHIES; and NONE, which +# disables this behavior completely. For backwards compatibility with previous +# releases of Doxygen, the values YES and NO are equivalent to FRAME and NONE +# respectively. + +GENERATE_TREEVIEW = NONE + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be +# used to set the initial width (in pixels) of the frame in which the tree +# is shown. + +TREEVIEW_WIDTH = 250 + +# Use this tag to change the font size of Latex formulas included +# as images in the HTML documentation. The default is 10. Note that +# when you change the font size after a successful doxygen run you need +# to manually remove any form_*.png images from the HTML output directory +# to force them to be regenerated. + +FORMULA_FONTSIZE = 10 + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# generate Latex output. + +GENERATE_LATEX = NO + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `latex' will be used as the default path. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. If left blank `latex' will be used as the default command name. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to +# generate index for LaTeX. If left blank `makeindex' will be used as the +# default command name. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact +# LaTeX documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, a4wide, letter, legal and +# executive. If left blank a4wide will be used. + +PAPER_TYPE = a4wide + +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# packages that should be included in the LaTeX output. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for +# the generated latex document. The header should contain everything until +# the first chapter. If it is left blank doxygen will generate a +# standard header. Notice: only use this tag if you know what you are doing! + +LATEX_HEADER = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). The pdf file will +# contain links (just like the HTML output) instead of page references +# This makes the output suitable for online browsing using a pdf viewer. + +PDF_HYPERLINKS = YES + +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a +# higher quality PDF documentation. + +USE_PDFLATEX = YES + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. +# command to the generated LaTeX files. This will instruct LaTeX to keep +# running if errors occur, instead of asking the user for help. +# This option is also used when generating formulas in HTML. + +LATEX_BATCHMODE = NO + +# If LATEX_HIDE_INDICES is set to YES then doxygen will not +# include the index chapters (such as File Index, Compound Index, etc.) +# in the output. + +LATEX_HIDE_INDICES = NO + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output +# The RTF output is optimized for Word 97 and may not look very pretty with +# other RTF readers or editors. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `rtf' will be used as the default path. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES Doxygen generates more compact +# RTF documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated +# will contain hyperlink fields. The RTF file will +# contain links (just like the HTML output) instead of page references. +# This makes the output suitable for online browsing using WORD or other +# programs which support those fields. +# Note: wordpad (write) and others do not support links. + +RTF_HYPERLINKS = NO + +# Load stylesheet definitions from file. Syntax is similar to doxygen's +# config file, i.e. a series of assignments. You only have to provide +# replacements, missing definitions are set to their default value. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an rtf document. +# Syntax is similar to doxygen's config file. + +RTF_EXTENSIONS_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# generate man pages + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `man' will be used as the default path. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to +# the generated man pages (default is the subroutine's section .3) + +MAN_EXTENSION = .3 + +# If the MAN_LINKS tag is set to YES and Doxygen generates man output, +# then it will generate one additional man file for each entity +# documented in the real man page(s). These additional files +# only source the real man page, but without them the man command +# would be unable to find the correct page. The default is NO. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES Doxygen will +# generate an XML file that captures the structure of +# the code including all documentation. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `xml' will be used as the default path. + +XML_OUTPUT = xml + +# The XML_SCHEMA tag can be used to specify an XML schema, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_SCHEMA = + +# The XML_DTD tag can be used to specify an XML DTD, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_DTD = + +# If the XML_PROGRAMLISTING tag is set to YES Doxygen will +# dump the program listings (including syntax highlighting +# and cross-referencing information) to the XML output. Note that +# enabling this will significantly increase the size of the XML output. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental +# and incomplete at the moment. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES Doxygen will +# generate a Perl module file that captures the structure of +# the code including all documentation. Note that this +# feature is still experimental and incomplete at the +# moment. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES Doxygen will generate +# the necessary Makefile rules, Perl scripts and LaTeX code to be able +# to generate PDF and DVI output from the Perl module output. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be +# nicely formatted so it can be parsed by a human reader. This is useful +# if you want to understand what is going on. On the other hand, if this +# tag is set to NO the size of the Perl module output will be much smaller +# and Perl will parse it just the same. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file +# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. +# This is useful so different doxyrules.make files included by the same +# Makefile don't overwrite each other's variables. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include +# files. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled +# way by setting EXPAND_ONLY_PREDEF to YES. + +MACRO_EXPANSION = NO + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES +# then the macro expansion is limited to the macros specified with the +# PREDEFINED and EXPAND_AS_DEFINED tags. + +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# in the INCLUDE_PATH (see below) will be search if a #include is found. + +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by +# the preprocessor. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will +# be used. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that +# are defined before the preprocessor is started (similar to the -D option of +# gcc). The argument of the tag is a list of macros of the form: name +# or name=definition (no spaces). If the definition and the = are +# omitted =1 is assumed. To prevent a macro definition from being +# undefined via #undef or recursively expanded use the := operator +# instead of the = operator. + +PREDEFINED = + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then +# this tag can be used to specify a list of macro names that should be expanded. +# The macro definition that is found in the sources will be used. +# Use the PREDEFINED tag if you want to use a different macro definition. + +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then +# doxygen's preprocessor will remove all function-like macros that are alone +# on a line, have an all uppercase name, and do not end with a semicolon. Such +# function macros are typically used for boiler-plate code, and will confuse +# the parser if not removed. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES option can be used to specify one or more tagfiles. +# Optionally an initial location of the external documentation +# can be added for each tagfile. The format of a tag file without +# this location is as follows: +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where "loc1" and "loc2" can be relative or absolute paths or +# URLs. If a location is present for each tag, the installdox tool +# does not have to be run to correct the links. +# Note that each tag file must have a unique name +# (where the name does NOT include the path) +# If a tag file is not located in the directory in which doxygen +# is run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create +# a tag file that is based on the input files it reads. + +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes +# will be listed. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will +# be listed. + +EXTERNAL_GROUPS = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of `which perl'). + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base +# or super classes. Setting the tag to NO turns the diagrams off. Note that +# this option is superseded by the HAVE_DOT option below. This is only a +# fallback. It is recommended to install and use dot, since it yields more +# powerful graphs. + +CLASS_DIAGRAMS = YES + +# You can define message sequence charts within doxygen comments using the \msc +# command. Doxygen will then run the mscgen tool (see +# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the +# documentation. The MSCGEN_PATH tag allows you to specify the directory where +# the mscgen tool resides. If left empty the tool is assumed to be found in the +# default search path. + +MSCGEN_PATH = + +# If set to YES, the inheritance and collaboration graphs will hide +# inheritance and usage relations if the target is undocumented +# or is not a class. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz, a graph visualization +# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# have no effect if this option is set to NO (the default) + +HAVE_DOT = YES + +# By default doxygen will write a font called FreeSans.ttf to the output +# directory and reference it in all dot files that doxygen generates. This +# font does not include all possible unicode characters however, so when you need +# these (or just want a differently looking font) you can specify the font name +# using DOT_FONTNAME. You need need to make sure dot is able to find the font, +# which can be done by putting it in a standard location or by setting the +# DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory +# containing the font. + +DOT_FONTNAME = FreeSans + +# By default doxygen will tell dot to use the output directory to look for the +# FreeSans.ttf font (which doxygen will put there itself). If you specify a +# different font using DOT_FONTNAME you can set the path where dot +# can find it using this tag. + +DOT_FONTPATH = + +# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect inheritance relations. Setting this tag to YES will force the +# the CLASS_DIAGRAMS tag to NO. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect implementation dependencies (inheritance, containment, and +# class references variables) of the class with other documented classes. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for groups, showing the direct groups dependencies + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. + +UML_LOOK = NO + +# If set to YES, the inheritance and collaboration graphs will show the +# relations between templates and their instances. + +TEMPLATE_RELATIONS = NO + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# tags are set to YES then doxygen will generate a graph for each documented +# file showing the direct and indirect include dependencies of the file with +# other documented files. + +INCLUDE_GRAPH = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or +# indirectly include this file. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH and HAVE_DOT options are set to YES then +# doxygen will generate a call dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable call graphs +# for selected functions only using the \callgraph command. + +CALL_GRAPH = NO + +# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then +# doxygen will generate a caller dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable caller +# graphs for selected functions only using the \callergraph command. + +CALLER_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# will graphical hierarchy of all classes instead of a textual one. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES +# then doxygen will show the dependencies a directory has on other directories +# in a graphical way. The dependency relations are determined by the #include +# relations between the files in the directories. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. Possible values are png, jpg, or gif +# If left blank png will be used. + +DOT_IMAGE_FORMAT = png + +# The tag DOT_PATH can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the +# \dotfile command). + +DOTFILE_DIRS = + +# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of +# nodes that will be shown in the graph. If the number of nodes in a graph +# becomes larger than this value, doxygen will truncate the graph, which is +# visualized by representing a node as a red box. Note that doxygen if the +# number of direct children of the root node in a graph is already larger than +# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note +# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. + +DOT_GRAPH_MAX_NODES = 50 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the +# graphs generated by dot. A depth value of 3 means that only nodes reachable +# from the root by following a path via at most 3 edges will be shown. Nodes +# that lay further from the root node will be omitted. Note that setting this +# option to 1 or 2 may greatly reduce the computation time needed for large +# code bases. Also note that the size of a graph can be further restricted by +# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is enabled by default, which results in a transparent +# background. Warning: Depending on the platform used, enabling this option +# may lead to badly anti-aliased labels on the edges of a graph (i.e. they +# become hard to read). + +DOT_TRANSPARENT = YES + +# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) +# support this, this feature is disabled by default. + +DOT_MULTI_TARGETS = NO + +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and +# arrows in the dot generated graphs. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermediate dot files that are used to generate +# the various graphs. + +DOT_CLEANUP = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to the search engine +#--------------------------------------------------------------------------- + +# The SEARCHENGINE tag specifies whether or not a search engine should be +# used. If set to NO the values of all tags below this one will be ignored. + +SEARCHENGINE = NO diff --git a/AusRegCliever/include/cliever-md.h b/AusRegCliever/include/cliever-md.h new file mode 100644 index 0000000..b6361e1 --- /dev/null +++ b/AusRegCliever/include/cliever-md.h @@ -0,0 +1,51 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace fsm = boost::statechart; + +#include "mdcommon.h" +#include "mdevents.h" +#include "mdLogger.h" + +#define MD_HAUSHALT 1200000 // milliseconds between attention routine +#define MD_LOCK_FILE "cliever-md.lock" + +#include "masterDaemonConfig.h" + +#ifdef MD_MAIN + + mdGTEEngine *engineFactory; + mdLogger *theseLogs; + masterDaemonConfig *thisConfig; + + extern void runMasterDaemon(); + extern void runClientServiceLayer(); + +#else + + extern mdGTEEngine *engineFactory; + extern mdLogger *theseLogs; + extern masterDaemonConfig *thisConfig; + +#endif + + diff --git a/AusRegCliever/include/masterDaemonConfig.h b/AusRegCliever/include/masterDaemonConfig.h new file mode 100644 index 0000000..2d8de7e --- /dev/null +++ b/AusRegCliever/include/masterDaemonConfig.h @@ -0,0 +1,47 @@ +#ifndef MD_CONFIG +#define MD_CONFIG + +typedef struct MDCLIENT { + md_device devType; + int mdStdDevIdx; +} mdLiveClient; + + +typedef std::map ClientsByHandle; +typedef std::map DataClientsByHandle; +typedef std::map InstrumentsByHandle; + +class masterDaemonConfig { + + friend class mdState; + +public: + + bool daemonized; + bool halt; + bool shuttingDown; + bool shutdown; + const char *configPath,**err,*logPath, + *xmlrpcLogpath; + mdClientServer *cliever[MAX_CLIEVER]; + mdMachine *machine[MAX_CLIEVER]; + + ClientsByHandle allClients; + DataClientsByHandle clients; + + date epoch(MD_EPOCH); + int debugThreshold,nClients,nClievers, + servicePort,thisMachineContext, + clientPort; + pid_t daemonProcess, shellProcess; + std::string cfg_path,log_path; + std::string clievers[MAX_CLIEVER]; + + masterDaemonConfig(); + + int loadMachineConfiguration(int machineClass); + + +}; + +#endif diff --git a/AusRegCliever/include/mdLogger.h b/AusRegCliever/include/mdLogger.h new file mode 100644 index 0000000..9453c59 --- /dev/null +++ b/AusRegCliever/include/mdLogger.h @@ -0,0 +1,30 @@ +#ifndef MD_LOGGER +#define MD_LOGGER + +#include "log4cpp/Category.hh" +#include "log4cpp/Appender.hh" +#include "log4cpp/FileAppender.hh" +#include "log4cpp/Layout.hh" +#include "log4cpp/BasicLayout.hh" +#include "log4cpp/Priority.hh" + +using namespace log4cpp; + +class mdLogger { +public: + char *logPath; + + mdLogger() {}; + + void init(); + void logN(int n, const char *format, ...); + // log iff m positive and >= config.debugThreshold, + // set in powers of 10 + void logNdebug(int m, int n, const char *format, ...); + void logNdev(int n, const char *format, ...); + + ~mdLogger(){}; + +}; + +#endif diff --git a/AusRegCliever/include/mdcommon.h b/AusRegCliever/include/mdcommon.h new file mode 100644 index 0000000..a5e3da2 --- /dev/null +++ b/AusRegCliever/include/mdcommon.h @@ -0,0 +1,525 @@ + /** + * \mainpage AusReg Cliever + * + *

+ * + * \par About + * \par + * The Generics Document + * + * \htmlonly + * \endhtmlonly + * + *

+ * + * \par AusReg Cliever requirements + * + * The AusReg Cliever was originally developed on Debian Wheezy 64 but + * should compile on any Unix where all of the requirements are present. The master + * daemon programs was developed for a cluster but in this design that's cut back to + * a stub. + * + * + *

+ * + * \par Access AusReg Cliever source code + * + * + * See 'DEVOPS" at the delivert/support site + * + * + * + *

+ * + * \par Top Level External Dependencies... and version currently used + *
+ * \b boost: 1.49
+ * \b log4cpp: 1.0
+ * \b sigc++: 2.0
+ * \b AusRegTk: 1.3.2
+ *
+ * See the Tk for it's dependencies, besides that and above everything should be in the git tree. + * + *

+ * + * mdcommon.h - Core Daemon Level definitions. + * + * \par Authors Support Site + * + * \htmlonly Delivery/Suppor site \endhtmlonly + * + * \par License + * juan@acm.org for Secura + * + */ + +#ifndef MD_COMMON +#define MD_COMMON + +#include + +using namespace std; +using boost::asio::ip::udp; + +#define MAX_CLIENTS 1000 +#define MAX_CLIEVER 1 +#define MAX_CLIENTS 200 +#define MAX_SERVERS 3 // Per Cliever cluster. +#define MAX_DEBUG 1000 // Set the config parm higher than this to inhibit logNdebug(m...) where m < this +#define MAX_DEVICE (((MAX_CLIEVER + 1) * MAX_INSTRUMENTS) + MAX_DATACLIENTS) + +#define MD_EPOCH date() +#define MD_HEARTBEAT 1 // Network peer heartbeat in seconds. +#define MD_MAX_DATAGRAM (32*1024) // half of the IPV4 max +#define AUSREGCLIEVER_APP "Generic" +#define MD_COMPONENT "Master Daemon" // Cliever Component +#define MD_NAME DACLIPS_APP " " MD_COMPONENT +#define MD_VERSION " 1.0 " // Version +#define MD_REFRESH 10 // default milliseconds between telemetry frame updates +#define MD_TYPE "AUSREGCLIEVER" // i.e. what a MACHINE is, Change per your Cliever derivation +#define NORMAL_DEBUG 10 +#ifndef CURRENT_DEBUG +#define CURRENT_DEBUG NORMAL_DEBUG +#endif +#define NOT_OK -1 +#define OK 0 +#define RUNNING_DIR "/tmp" + +#define theMachine thisConfig->machine[thisConfig->thisMachineContext] + +enum md_mand { + MD_NAM, // Not a Mand. + MD_USER_MAND, // User defined mand type + MD_EPP, + MD_RULE_ACTION, + MD_CLIEVER_CMD, // From CD command loop or other UI + MD_CLIENT_CMD, // From APIG + MD_NMANDS +}; + +enum mdErrorCode { // In auc-md/kb index to masterDaemonConfig.err + MDERR_OK, + MDERR_MISSING, + MDERR_EXISTS, + MDERR_CONFLICT, + MDERR_NOTREADY, + MDERR_SYNTAX, + N_MDSTDERR +}; + +enum md_dispatch_category { + MD_NEWBORN = 0, // inbound this isn't dispatched + CD_FRAME, + MD_FRAME, + DV_MDQUERY, + MD_SHUTDOWN +}; + +enum md_device { + MDDEV_MD = 0, + MDDEV_CD, + MACHINE, + MDDEV_DATACLIENT, + N_MDDEV_TYPES +}; + +enum md_units { + MD_UNITS_UNDEFINED = 0, + N_MD_UNITS +}; + +enum mdDGtype { + MDDG_HEARTBEAT = 0, + MDDG_DEVICEHB, + MDDG_NEWBORN, + MDDG_MDQUERY, + MDDG_MDDATA, + MDDG_MDMAND, + N_MDDG_TYPES +}; + +typedef +struct MD_DG_TYPE { +unsigned inBandOnly : 1; +unsigned requiresAck : 1; +unsigned isAckNak : 1; +unsigned value : 1; // i.e. boolean for ack/nak etc. where true = ack. +unsigned reserved : 4; +unsigned clieverGroup : 8; // masterDaemonConfig.thisMachineContext +unsigned reserved2 : 16; +} + mdDGflags; + +typedef +struct MD_DG_HEADER { +mdDGtype msgType; +mdDGflags dgType; +mdDGtype dgSubType; +int msgSN; // Ordinal in a dialog +md_device clientType; +int sourceHandle; +int sinkHandle; +int handle; // for example if query about a device other than source or sink. +mdErrorCode ec; +int payloadSize; +int primeOffset; // for example to the name associated with the data +} + mdDGHeader; + +typedef +struct MD_DATAGRAM { + mdDGHeader hdr; + char payLoad[MD_MAX_DATAGRAM - (sizeof(mdDGHeader))]; +} + mdDatagram; + +typedef +struct MD_REPLY { + mdDGHeader hdr; + char payLoad[512 - sizeof(mdDGHeader)]; +} + mdDGReply; + +class mdReply { +public: + + mdDGReply dg; + + mdReply() {memset((void *)&dg,0,sizeof(mdDGReply)); + dg.hdr.dgType.isAckNak = true; + } +}; + +#if (defined(MD_MAIN) ) +const char *clientTypes[N_MDDEV_TYPES ] = { "Master Daemon", "Cliever", "MD Client" }; +#else +extern const char *clientTypes[N_MDDEV_TYPES]; +#endif + +/* \brief mdProcess + * Abstract base class of various subprocesses + * + * AC is (potentially) a distributed system with various subprocesses + * spanning the central server, the 'Cliever' middleware component and clients. + * Root class for these. + * + */ + +class mdWQitem { +public: + md_dispatch_category kind; + const void *what; + int user; // User defined + mdWQitem (const void *work,md_dispatch_category priority,int x) + : what(work), kind(priority), user(x) {} + + bool operator< (const mdWQitem & right) const { + return kind < right.kind; + } + +}; + +typedef std::priority_queue < mdWQitem* > MDWQ; + +class mdProcess { +public: MDWQ q; + mdProcess() {} + ~mdProcess() {} + + void queue(mdWQitem *w) {q.push(w);} +virtual void dispatch(mdWQitem *w)=0; +virtual void run() = 0; + +}; +#define MD_DEFAULT_DEVICE_PROTOCOL 0 +#define MD_DEFAULT_RULE 0 + +typedef +struct { + unsigned open:1; + unsigned looped:1; // back channel established from passive connection. + unsigned reserved:30; + } mdCnctBool; + +typedef +struct MD_CONTROL_BLOCK +{int handle; // debug mark + mdCnctBool connection; + boost::asio::ip::udp::endpoint ep; + boost::asio::ip::udp::resolver::iterator it; + boost::asio::ip::udp::socket *udp; + MD_CONTROL_BLOCK() { + handle = 0; + memset((void *)&connection,0,sizeof(connection)); + udp = NULL; + } +} + mdCB; + +typedef std::map mdStdDevicePODMap; // MD Standard Device Map - +/* + *\brief stdDev: collection with MD at: 0, CD in: 1 - MAX_CLIEVER, + * MACHINEs in: MAX_CLIEVER+1 - MAX_CLIEVER*2, + * Servers in: (MAX_CLIEVER*2)+1 - (((MAX_CLIEVER*2)+1)+(MAX_CLIEVER*MAX_INSTRUMENTS)), + * Clients in: (MAX_CLIEVER*MAX_INSTRUMENTS)+1 - MAX_CLIENT + * localhost at: MAX_CLIENT+1 + * + * The mdStdDevIdx of a device is its index above. + * Within intervals clients are assigned compactly in the same order as thier handles are created and assigned. + */ + +#if (defined(MD_MAIN) || defined(CD_MAIN) || defined(DV_DLL_MAIN)) + mdStdDevicePODMap cb; + int myStdDevIdx=MAX_CLIENTS+1; // global default to localhost +#else + extern mdStdDevicePODMap cb; + extern int myStdDevIdx; +#endif + +class mdDGChannel +{public: + + boost::asio::io_service& io_service_; + boost::asio::ip::udp::endpoint p_endpoint_; + boost::asio::ip::udp::endpoint a_endpoint_; + boost::asio::ip::udp::endpoint *ep_; + boost::asio::ip::udp::resolver *r; + boost::asio::ip::udp::resolver::query *q; + boost::asio::ip::udp::socket passive_; + boost::asio::ip::udp::socket *active_; + boost::asio::ip::udp::socket *s_; + + char ack_[sizeof(mdDGReply)]; + char data_[MD_MAX_DATAGRAM]; + + int mdStdDevIdx; + + mdDatagram *inProcess; + mdReply *reply; + + short port; + + mdDGChannel(boost::asio::io_service& io_service, + short inport, int stdDevIdx=myStdDevIdx) + : io_service_(io_service), mdStdDevIdx(stdDevIdx), + passive_(io_service, udp::endpoint(udp::v4(), inport)) + { + inProcess = (mdDatagram *)data_; + ep_ = &p_endpoint_; + port = inport; + reply = (mdReply *)ack_; + q = NULL; + r = NULL; + s_ = &passive_; + + passive_.async_receive_from( + boost::asio::buffer(data_, MD_MAX_DATAGRAM), p_endpoint_, + boost::bind(&mdDGChannel::handle_receive_from, this, + boost::asio::placeholders::error, + boost::asio::placeholders::bytes_transferred)); + } + + void async_send(mdDatagram &dg) { + + size_t dgSize = sizeof(mdDGHeader) + dg.hdr.payloadSize; + + *inProcess = dg; + //std::memcpy(this->data_,(char *)&dg,dgSize); + + active_->async_send_to( + boost::asio::buffer(data_, dgSize), *ep_, + boost::bind(&mdDGChannel::handle_send_to, this, + boost::asio::placeholders::error, + boost::asio::placeholders::bytes_transferred)); + } + + bool connect_to (std::string &host, std::string &port, int stdDevIdx=-1) { + + bool value = false; + int rport = atoi(port.c_str()); + boost::system::error_code ec; + boost::asio::ip::udp::endpoint remote ( boost::asio::ip::address::from_string(host.c_str()), rport); + + stdDevIdx = (stdDevIdx == -1) ? mdStdDevIdx : stdDevIdx; + map::iterator iter = cb.find(stdDevIdx); + if( iter == cb.end() ) cb[stdDevIdx] = new mdCB(); + + try { + if (!r) r = new udp::resolver(io_service_); + if ( q) delete q; + q = new udp::resolver::query(udp::v4(), host.c_str(), port.c_str()); + cb[stdDevIdx]->it = r->resolve(*q); + if (!cb[mdStdDevIdx]->udp) + cb[mdStdDevIdx]->udp = new udp::socket(io_service_, udp::endpoint(udp::v4(), 0)); + active_ = cb[mdStdDevIdx]->udp; + if (active_->is_open()) + active_->connect(remote,ec); + + if (!ec) value = true; + + } + catch(...) {} + + return (cb[stdDevIdx]->connection.open=value); + + } + + bool connect_to (boost::asio::ip::udp::endpoint &ep,boost::system::error_code &ec,int &step,int stdDevIdx=-1) + { + + bool value = false; + + stdDevIdx = stdDevIdx == -1 ? mdStdDevIdx : stdDevIdx; + map::iterator iter = cb.find(stdDevIdx); + if( iter == cb.end() ) cb[stdDevIdx] = new mdCB(); + + try { if (cb[stdDevIdx]->udp) {if (cb[stdDevIdx]->udp->is_open()) + cb[stdDevIdx]->udp->close(); + delete cb[stdDevIdx]->udp;} + + cb[stdDevIdx]->ep = ep; + active_ = cb[stdDevIdx]->udp = new boost::asio::ip::udp::socket( io_service_ , udp::endpoint(udp::v4(), 0) ); + ec.clear(); + active_->connect( cb[stdDevIdx]->ep, ec ); + if (active_->is_open()) { value = true; cb[stdDevIdx]->connection.open=1; } + else { + step++; + active_->open( udp::v4(), ec ); + if (active_->is_open()) {value = true; cb[stdDevIdx]->connection.open=1; } + } + + } + catch(boost::system::system_error &be) {boost::system::system_error warning = be;} + catch(...) {} + + return (value); + + } + + void handle_receive_from(const boost::system::error_code& error, size_t bytes_recvd); + + void handle_send_to(const boost::system::error_code& asioEC, size_t sentByes) + { + size_t dgSize = inProcess->hdr.dgType.requiresAck + ? sizeof(mdReply) : sizeof(mdDatagram); + + // std::string debugMsg = asioEC.message(); + + if (inProcess->hdr.dgType.requiresAck) + active_->async_receive_from( + boost::asio::buffer(ack_, dgSize), *ep_, + boost::bind(&mdDGChannel::handle_receive_from, this, + boost::asio::placeholders::error, + boost::asio::placeholders::bytes_transferred)); + else + active_->async_receive_from( + boost::asio::buffer(data_, dgSize), *ep_, + boost::bind(&mdDGChannel::handle_receive_from, this, + boost::asio::placeholders::error, + boost::asio::placeholders::bytes_transferred)); + } + + bool send(mdDatagram &dg) { + + size_t dgSize = sizeof(mdDGHeader) + dg.hdr.payloadSize; + + return (dgSize == + active_->send(boost::asio::buffer((void *)&dg, dgSize))); + + } + + bool send_to(mdDatagram &dg, int mdStdDevIdx) { + + size_t dgSize = sizeof(mdDGHeader) + dg.hdr.payloadSize; + + return (dgSize == + active_->send_to(boost::asio::buffer((void *)&dg, dgSize), *cb[mdStdDevIdx]->it)); + + } + + size_t send(mdReply &dg, boost::system::error_code &ec) { + + size_t dgSize = sizeof(mdDGReply); + boost::asio::socket_base::message_flags flags=0; + + return (active_->send(boost::asio::buffer((void *)&dg, dgSize), flags, ec)); + + } + + size_t send_back(mdReply &dg, boost::system::error_code &ec, int &step) { + + size_t dgSize = sizeof(mdDGReply); + boost::asio::socket_base::message_flags flags=0; + step = 1; + + a_endpoint_ = passive_.remote_endpoint(ec); + + if (ec) return 0; + + return (passive_.send_to(boost::asio::buffer((void *)&dg, dgSize), a_endpoint_, flags, ec)); + + } + + bool send_to(mdReply &dg,int mdStdDevIdx) { + + size_t dgSize = sizeof(mdDGReply); + + return (dgSize == + active_->send_to(boost::asio::buffer((void *)&dg, dgSize), *cb[mdStdDevIdx]->it)); + + } + +}; + + +typedef std::map mdErrMsgMap; + +class mdError { + + int instance; + mdErrMsgMap text; + +public: + mdError() { text[0] = std::string("OK"); + instance = 0; + } + + ~mdError() {} + + // The below populate the additional messages; + // Instances below 1000 are reserved for system errors, negative + // integers not used. + // Users derive from this class and implement additionalUsrMsgs. + + void additionalUserMsg(int instCode,const char *msgText) + {if (instCode >= 1000) text[instCode] = std::string(msgText);} + void additionalSystemMsg(int instCode,const char *msgText) + {if (instCode < 1000 && instCode >0) text[instCode] = std::string(msgText);} + + int get() {return instance;} + void get(mdError **parentPtr) + {*parentPtr = this;} + void set(int i) {instance = i;} + + const char *what(char *buffer=NULL) { + if (text.find(get()) == text.end()) { + {if (!buffer) return NULL; + sprintf(buffer,"Unknown error code: %d",get()); + return buffer; + } + return text[get()].c_str(); + } + return "unknown"; + } + +}; + +class mdDG { +public: + mdDatagram dg; + + mdDG() {memset(&dg,0,sizeof(mdDatagram));} + +}; + +#endif diff --git a/AusRegCliever/server/cliever-md.cpp b/AusRegCliever/server/cliever-md.cpp new file mode 100644 index 0000000..48a8fa1 --- /dev/null +++ b/AusRegCliever/server/cliever-md.cpp @@ -0,0 +1,199 @@ +#define MD_MAIN +#include "cliever-md.h" + +#include +#include +#include +#include + +using namespace std; + +bool mdHasEPPTk; + +const char *mdOrAC; // Process capability based on boolean above + +void setSignals(); +void signal_handler(int); +void usage(); +void md() { + + bool daemonized=false; + int i,lfp,rc; // log file pointer + char str[32]; + + if (thisConfig->daemonized) { + + rc = fork(); + if (rc < 0) { + puts("Can't initialize process!"); + exit(1); + } + + if (getpid() == thisConfig->shellProcess) + exit(0); + + setsid(); /* obtain a new process group */ + for (i=getdtablesize();i>=0;--i) close(i); /* close all descriptors */ + i=open("/dev/null",O_RDWR); dup(i); dup(i); /* handle standard I/O */ + umask(027); /* set newly created file permissions */ + chdir(RUNNING_DIR); /* change running directory */ + lfp=open(MD_LOCK_FILE,O_RDWR|O_CREAT,0640); /* make sure were The MD */ + + if (lfp<0) {printf("Can't open lockfile(%d)! Ctl-C me."); exit(1);} + + if ((rc=lockf(lfp,F_TLOCK,0))<0) + {printf("Can't lock lockfile (%d)! Ctl-C me.",rc); exit(0);} + + thisConfig->daemonProcess = getpid(); + + sprintf(str,"%d\n",getpid()); + write(lfp,str,strlen(str)); /* record pid to lockfile */ + daemonized = true; + + } + + setSignals(); + + try { + + theseLogs = new mdLogger(); + theseLogs->init(); + + theseLogs->logN(1,MD_NAME " " MD_VERSION " compiled on " __DATE__ " @ " __TIME__ "(%d)",thisConfig->daemonProcess); + if (daemonized) theseLogs->logN(1,"(detached from %d)",thisConfig->shellProcess); + + if (mdHasEPPTk) { + theseLogs->logN(0,"AusReg Cliever <- MasterDaemon."); + } + + boost::thread foreground(runMasterDaemon); + boost::thread background(runClientLayer); + + if (!foreground.joinable()) { + theseLogs->logN(0,"Fatal Error: couldn't start master daemon!"); + exit(1); + } + + if (background.joinable()) { + theseLogs->logN(2,"%s %d","Accepting API Requests on Port",thisConfig->clientPort); + myAusRegProcess.run(); + background.join(); // normally unreachable + } else + theseLogs->logN(0,"Fatal Error: couldn't start client service layer!"); + } + //catch (XmlRpcFault::XmlRpcFault& e) + //{ + // theseLogs->logN(1,"xmlrpc_c fault: %s",e.getFaultString().c_str()); + // exit(1); + //} + catch (std::exception& e) + { + theseLogs->logN(1,"Exception: %s",e.what()); + exit(1); + } + catch (...) { + theseLogs->logN(1,"General Fault!"); + exit(1); + } + +} +int +main(int const argc, + const char ** const argv) { + + char msg[512]; + const char *banner = MD_NAME " " MD_VERSION " compiled on " __DATE__ " @ " __TIME__ "(%d)\n"; + int mthParm, rc = 0; + + thisConfig = new masterDaemonConfig(); + thisConfig->shellProcess = getpid(); + + mdOrKb = (strcspn(argv[0],"./") == strlen(argv[0])) ? argv[0] : strrchr(argv[0],'/') + 1; + mdHasKb = strstr(argv[0],"clips") ? true : false; + + if (argc < 3 || argc > 6) usage(); + + thisConfig->servicePort = atoi(argv[1]); + thisConfig->clientPort = atoi(argv[2]); + + if (thisConfig->clientPort < 1000 || thisConfig->clientPort > 65535) + { + std::cerr << "The value is invalid.\n"; + return 1; + } + + if (thisConfig->servicePort < 1000 || thisConfig->servicePort > 65535) + { + std::cerr << "The value is invalid.\n"; + return 1; + } + + if (thisConfig->servicePort == thisConfig->clientPort) + { + std::cerr << "The and cannot be the same.\n"; + return 1; + } + + for (mthParm=3;mthParm < argc;mthParm++) { + if (*argv[mthParm] == '!') { + thisConfig->daemonized = false; + } + else + if (!strncmp(argv[mthParm],"logs=",4)) { + thisConfig->log_path = std::string(argv[mthParm]+4); + thisConfig->logPath = thisConfig->log_path.c_str(); + } + else + if (!strncmp(argv[mthParm],"cfg=",3)) { + thisConfig->cfg_path = std::string(argv[mthParm]+3); + thisConfig->configPath = thisConfig->cfg_path.c_str(); + } + else usage(); + } + + if (!thisConfig->daemonized) printf(banner,thisConfig->shellProcess); + md(); + while(!thisConfig->halt) sleep(5); + +} +void setSignals() { + + signal(SIGCHLD,SIG_IGN); /* ignore child */ + signal(SIGTSTP,SIG_IGN); /* ignore tty signals */ + signal(SIGTTOU,SIG_IGN); // both input + signal(SIGTTIN,SIG_IGN); // and output + signal(SIGSEGV,signal_handler); + signal(SIGUSR1,signal_handler); // commander log messages + signal(SIGUSR2,signal_handler); // reserved + signal(SIGHUP,signal_handler); /* catch hangup signal */ + signal(SIGTERM,signal_handler); /* catch kill signal */ + +} +void signal_handler(int sig) +{ + switch(sig) { + case SIGSEGV: + theseLogs->logN(0,"SEGV ABEND."); + exit(NOT_OK); + break; + case SIGUSR1: + break; + case SIGUSR2: + break; + case SIGHUP: + theseLogs->logN(0,"hangup signal caught, currently md ignores this."); + break; + case SIGTERM: + theseLogs->logN(0,"terminate signal caught, auc-md will shutdown."); + exit(0); + break; + } +} +void usage() { + + std::cerr << "Usage: " << mdOrAC << " [cfg=] [log=] [!] \n\n" + " where \n\nconfig directory defaults to the current directory \n" + "log directory to /tmp \nand ! to not daemonize (for diagnostic purposes)\n\n"; + exit(1); + +} diff --git a/AusRegEPPTK/build/AddRemType.o b/AusRegEPPTK/build/AddRemType.o new file mode 100644 index 0000000..8c7e565 Binary files /dev/null and b/AusRegEPPTK/build/AddRemType.o differ diff --git a/AusRegEPPTK/build/AeDomainCreateCommand.o b/AusRegEPPTK/build/AeDomainCreateCommand.o new file mode 100644 index 0000000..319f5da Binary files /dev/null and b/AusRegEPPTK/build/AeDomainCreateCommand.o differ diff --git a/AusRegEPPTK/build/AeDomainCreateCommandTest b/AusRegEPPTK/build/AeDomainCreateCommandTest new file mode 100755 index 0000000..fbcc601 Binary files /dev/null and b/AusRegEPPTK/build/AeDomainCreateCommandTest differ diff --git a/AusRegEPPTK/build/AeDomainInfoResponse.o b/AusRegEPPTK/build/AeDomainInfoResponse.o new file mode 100644 index 0000000..17bd5ed Binary files /dev/null and b/AusRegEPPTK/build/AeDomainInfoResponse.o differ diff --git a/AusRegEPPTK/build/AeDomainModifyRegistrantCommand.o b/AusRegEPPTK/build/AeDomainModifyRegistrantCommand.o new file mode 100644 index 0000000..f975f7d Binary files /dev/null and b/AusRegEPPTK/build/AeDomainModifyRegistrantCommand.o differ diff --git a/AusRegEPPTK/build/AeDomainObjectType.o b/AusRegEPPTK/build/AeDomainObjectType.o new file mode 100644 index 0000000..a13e210 Binary files /dev/null and b/AusRegEPPTK/build/AeDomainObjectType.o differ diff --git a/AusRegEPPTK/build/AeDomainTransferRegistrantCommand.o b/AusRegEPPTK/build/AeDomainTransferRegistrantCommand.o new file mode 100644 index 0000000..4781c30 Binary files /dev/null and b/AusRegEPPTK/build/AeDomainTransferRegistrantCommand.o differ diff --git a/AusRegEPPTK/build/AeDomainTransferRegistrantResponse.o b/AusRegEPPTK/build/AeDomainTransferRegistrantResponse.o new file mode 100644 index 0000000..ccda8d6 Binary files /dev/null and b/AusRegEPPTK/build/AeDomainTransferRegistrantResponse.o differ diff --git a/AusRegEPPTK/build/AeExtension.o b/AusRegEPPTK/build/AeExtension.o new file mode 100644 index 0000000..ade12ef Binary files /dev/null and b/AusRegEPPTK/build/AeExtension.o differ diff --git a/AusRegEPPTK/build/ArDomainObjectType.o b/AusRegEPPTK/build/ArDomainObjectType.o new file mode 100644 index 0000000..112ffc8 Binary files /dev/null and b/AusRegEPPTK/build/ArDomainObjectType.o differ diff --git a/AusRegEPPTK/build/ArDomainPolicyDeleteCommand.o b/AusRegEPPTK/build/ArDomainPolicyDeleteCommand.o new file mode 100644 index 0000000..deabda4 Binary files /dev/null and b/AusRegEPPTK/build/ArDomainPolicyDeleteCommand.o differ diff --git a/AusRegEPPTK/build/ArDomainPolicyDeleteCommandTest b/AusRegEPPTK/build/ArDomainPolicyDeleteCommandTest new file mode 100755 index 0000000..f94ea15 Binary files /dev/null and b/AusRegEPPTK/build/ArDomainPolicyDeleteCommandTest differ diff --git a/AusRegEPPTK/build/ArDomainPolicyUndeleteCommand.o b/AusRegEPPTK/build/ArDomainPolicyUndeleteCommand.o new file mode 100644 index 0000000..dcec598 Binary files /dev/null and b/AusRegEPPTK/build/ArDomainPolicyUndeleteCommand.o differ diff --git a/AusRegEPPTK/build/ArDomainPolicyUndeleteCommandTest b/AusRegEPPTK/build/ArDomainPolicyUndeleteCommandTest new file mode 100755 index 0000000..5d170ec Binary files /dev/null and b/AusRegEPPTK/build/ArDomainPolicyUndeleteCommandTest differ diff --git a/AusRegEPPTK/build/ArDomainUndeleteCommand.o b/AusRegEPPTK/build/ArDomainUndeleteCommand.o new file mode 100644 index 0000000..6c14fba Binary files /dev/null and b/AusRegEPPTK/build/ArDomainUndeleteCommand.o differ diff --git a/AusRegEPPTK/build/ArDomainUndeleteCommandTest b/AusRegEPPTK/build/ArDomainUndeleteCommandTest new file mode 100755 index 0000000..9c80fa4 Binary files /dev/null and b/AusRegEPPTK/build/ArDomainUndeleteCommandTest differ diff --git a/AusRegEPPTK/build/ArDomainUnrenewCommand.o b/AusRegEPPTK/build/ArDomainUnrenewCommand.o new file mode 100644 index 0000000..c01b8ae Binary files /dev/null and b/AusRegEPPTK/build/ArDomainUnrenewCommand.o differ diff --git a/AusRegEPPTK/build/ArDomainUnrenewCommandTest b/AusRegEPPTK/build/ArDomainUnrenewCommandTest new file mode 100755 index 0000000..85d4344 Binary files /dev/null and b/AusRegEPPTK/build/ArDomainUnrenewCommandTest differ diff --git a/AusRegEPPTK/build/ArDomainUnrenewResponse.o b/AusRegEPPTK/build/ArDomainUnrenewResponse.o new file mode 100644 index 0000000..45bb23c Binary files /dev/null and b/AusRegEPPTK/build/ArDomainUnrenewResponse.o differ diff --git a/AusRegEPPTK/build/ArDomainUnrenewResponseTest b/AusRegEPPTK/build/ArDomainUnrenewResponseTest new file mode 100755 index 0000000..72032fa Binary files /dev/null and b/AusRegEPPTK/build/ArDomainUnrenewResponseTest differ diff --git a/AusRegEPPTK/build/ArExtension.o b/AusRegEPPTK/build/ArExtension.o new file mode 100644 index 0000000..3841286 Binary files /dev/null and b/AusRegEPPTK/build/ArExtension.o differ diff --git a/AusRegEPPTK/build/ArUnrenewCommandType.o b/AusRegEPPTK/build/ArUnrenewCommandType.o new file mode 100644 index 0000000..46f4878 Binary files /dev/null and b/AusRegEPPTK/build/ArUnrenewCommandType.o differ diff --git a/AusRegEPPTK/build/AuDomainCreateCommand.o b/AusRegEPPTK/build/AuDomainCreateCommand.o new file mode 100644 index 0000000..b12fb53 Binary files /dev/null and b/AusRegEPPTK/build/AuDomainCreateCommand.o differ diff --git a/AusRegEPPTK/build/AuDomainCreateCommandTest b/AusRegEPPTK/build/AuDomainCreateCommandTest new file mode 100755 index 0000000..fd087d7 Binary files /dev/null and b/AusRegEPPTK/build/AuDomainCreateCommandTest differ diff --git a/AusRegEPPTK/build/AuDomainCreateCommandV1.o b/AusRegEPPTK/build/AuDomainCreateCommandV1.o new file mode 100644 index 0000000..00bdcdb Binary files /dev/null and b/AusRegEPPTK/build/AuDomainCreateCommandV1.o differ diff --git a/AusRegEPPTK/build/AuDomainInfoResponse.o b/AusRegEPPTK/build/AuDomainInfoResponse.o new file mode 100644 index 0000000..2b4c6b8 Binary files /dev/null and b/AusRegEPPTK/build/AuDomainInfoResponse.o differ diff --git a/AusRegEPPTK/build/AuDomainInfoResponseTest b/AusRegEPPTK/build/AuDomainInfoResponseTest new file mode 100755 index 0000000..0561d4c Binary files /dev/null and b/AusRegEPPTK/build/AuDomainInfoResponseTest differ diff --git a/AusRegEPPTK/build/AuDomainInfoResponseV1.o b/AusRegEPPTK/build/AuDomainInfoResponseV1.o new file mode 100644 index 0000000..56a8ffd Binary files /dev/null and b/AusRegEPPTK/build/AuDomainInfoResponseV1.o differ diff --git a/AusRegEPPTK/build/AuDomainInfoResponsev1Test b/AusRegEPPTK/build/AuDomainInfoResponsev1Test new file mode 100755 index 0000000..aa44a8d Binary files /dev/null and b/AusRegEPPTK/build/AuDomainInfoResponsev1Test differ diff --git a/AusRegEPPTK/build/AuDomainModifyRegistrantCommand.o b/AusRegEPPTK/build/AuDomainModifyRegistrantCommand.o new file mode 100644 index 0000000..55f0a82 Binary files /dev/null and b/AusRegEPPTK/build/AuDomainModifyRegistrantCommand.o differ diff --git a/AusRegEPPTK/build/AuDomainModifyRegistrantCommandTest b/AusRegEPPTK/build/AuDomainModifyRegistrantCommandTest new file mode 100755 index 0000000..0506a80 Binary files /dev/null and b/AusRegEPPTK/build/AuDomainModifyRegistrantCommandTest differ diff --git a/AusRegEPPTK/build/AuDomainObjectType.o b/AusRegEPPTK/build/AuDomainObjectType.o new file mode 100644 index 0000000..a2b9a5c Binary files /dev/null and b/AusRegEPPTK/build/AuDomainObjectType.o differ diff --git a/AusRegEPPTK/build/AuDomainTransferRegistrantCommand.o b/AusRegEPPTK/build/AuDomainTransferRegistrantCommand.o new file mode 100644 index 0000000..3b1f3b9 Binary files /dev/null and b/AusRegEPPTK/build/AuDomainTransferRegistrantCommand.o differ diff --git a/AusRegEPPTK/build/AuDomainTransferRegistrantCommandTest b/AusRegEPPTK/build/AuDomainTransferRegistrantCommandTest new file mode 100755 index 0000000..61a87b4 Binary files /dev/null and b/AusRegEPPTK/build/AuDomainTransferRegistrantCommandTest differ diff --git a/AusRegEPPTK/build/AuDomainTransferRegistrantResponse.o b/AusRegEPPTK/build/AuDomainTransferRegistrantResponse.o new file mode 100644 index 0000000..271ab90 Binary files /dev/null and b/AusRegEPPTK/build/AuDomainTransferRegistrantResponse.o differ diff --git a/AusRegEPPTK/build/AuDomainTransferRegistrantResponseTest b/AusRegEPPTK/build/AuDomainTransferRegistrantResponseTest new file mode 100755 index 0000000..5e16df3 Binary files /dev/null and b/AusRegEPPTK/build/AuDomainTransferRegistrantResponseTest differ diff --git a/AusRegEPPTK/build/AuExtension.o b/AusRegEPPTK/build/AuExtension.o new file mode 100644 index 0000000..fd86d16 Binary files /dev/null and b/AusRegEPPTK/build/AuExtension.o differ diff --git a/AusRegEPPTK/build/AuExtensionV1.o b/AusRegEPPTK/build/AuExtensionV1.o new file mode 100644 index 0000000..e269158 Binary files /dev/null and b/AusRegEPPTK/build/AuExtensionV1.o differ diff --git a/AusRegEPPTK/build/CLTRID.o b/AusRegEPPTK/build/CLTRID.o new file mode 100644 index 0000000..007cb8c Binary files /dev/null and b/AusRegEPPTK/build/CLTRID.o differ diff --git a/AusRegEPPTK/build/CertificateUserMismatchException.o b/AusRegEPPTK/build/CertificateUserMismatchException.o new file mode 100644 index 0000000..f2088c0 Binary files /dev/null and b/AusRegEPPTK/build/CertificateUserMismatchException.o differ diff --git a/AusRegEPPTK/build/CheckResponse.o b/AusRegEPPTK/build/CheckResponse.o new file mode 100644 index 0000000..3c4db4e Binary files /dev/null and b/AusRegEPPTK/build/CheckResponse.o differ diff --git a/AusRegEPPTK/build/Command.o b/AusRegEPPTK/build/Command.o new file mode 100644 index 0000000..1a7dad4 Binary files /dev/null and b/AusRegEPPTK/build/Command.o differ diff --git a/AusRegEPPTK/build/CommandCounter.o b/AusRegEPPTK/build/CommandCounter.o new file mode 100644 index 0000000..e5e7342 Binary files /dev/null and b/AusRegEPPTK/build/CommandCounter.o differ diff --git a/AusRegEPPTK/build/CommandCounterTest b/AusRegEPPTK/build/CommandCounterTest new file mode 100755 index 0000000..20e6241 Binary files /dev/null and b/AusRegEPPTK/build/CommandCounterTest differ diff --git a/AusRegEPPTK/build/Constants.o b/AusRegEPPTK/build/Constants.o new file mode 100644 index 0000000..8a38f12 Binary files /dev/null and b/AusRegEPPTK/build/Constants.o differ diff --git a/AusRegEPPTK/build/ContactCheckCommandTest b/AusRegEPPTK/build/ContactCheckCommandTest new file mode 100755 index 0000000..0527949 Binary files /dev/null and b/AusRegEPPTK/build/ContactCheckCommandTest differ diff --git a/AusRegEPPTK/build/ContactCheckResponse.o b/AusRegEPPTK/build/ContactCheckResponse.o new file mode 100644 index 0000000..9ed87fc Binary files /dev/null and b/AusRegEPPTK/build/ContactCheckResponse.o differ diff --git a/AusRegEPPTK/build/ContactCheckResponseTest b/AusRegEPPTK/build/ContactCheckResponseTest new file mode 100755 index 0000000..dc54ae9 Binary files /dev/null and b/AusRegEPPTK/build/ContactCheckResponseTest differ diff --git a/AusRegEPPTK/build/ContactCreateCommand.o b/AusRegEPPTK/build/ContactCreateCommand.o new file mode 100644 index 0000000..44e1970 Binary files /dev/null and b/AusRegEPPTK/build/ContactCreateCommand.o differ diff --git a/AusRegEPPTK/build/ContactCreateResponse.o b/AusRegEPPTK/build/ContactCreateResponse.o new file mode 100644 index 0000000..d13fc56 Binary files /dev/null and b/AusRegEPPTK/build/ContactCreateResponse.o differ diff --git a/AusRegEPPTK/build/ContactDeleteCommandTest b/AusRegEPPTK/build/ContactDeleteCommandTest new file mode 100755 index 0000000..f768325 Binary files /dev/null and b/AusRegEPPTK/build/ContactDeleteCommandTest differ diff --git a/AusRegEPPTK/build/ContactInfoCommandTest b/AusRegEPPTK/build/ContactInfoCommandTest new file mode 100755 index 0000000..53f838d Binary files /dev/null and b/AusRegEPPTK/build/ContactInfoCommandTest differ diff --git a/AusRegEPPTK/build/ContactInfoResponse.o b/AusRegEPPTK/build/ContactInfoResponse.o new file mode 100644 index 0000000..f57dc83 Binary files /dev/null and b/AusRegEPPTK/build/ContactInfoResponse.o differ diff --git a/AusRegEPPTK/build/ContactInfoResponseTest b/AusRegEPPTK/build/ContactInfoResponseTest new file mode 100755 index 0000000..7889e58 Binary files /dev/null and b/AusRegEPPTK/build/ContactInfoResponseTest differ diff --git a/AusRegEPPTK/build/ContactNotificationResponse.o b/AusRegEPPTK/build/ContactNotificationResponse.o new file mode 100644 index 0000000..c3d4334 Binary files /dev/null and b/AusRegEPPTK/build/ContactNotificationResponse.o differ diff --git a/AusRegEPPTK/build/ContactTransferRequestCommandTest b/AusRegEPPTK/build/ContactTransferRequestCommandTest new file mode 100755 index 0000000..32f0f14 Binary files /dev/null and b/AusRegEPPTK/build/ContactTransferRequestCommandTest differ diff --git a/AusRegEPPTK/build/ContactTransferResponse.o b/AusRegEPPTK/build/ContactTransferResponse.o new file mode 100644 index 0000000..69af6fd Binary files /dev/null and b/AusRegEPPTK/build/ContactTransferResponse.o differ diff --git a/AusRegEPPTK/build/ContactUpdateCommand.o b/AusRegEPPTK/build/ContactUpdateCommand.o new file mode 100644 index 0000000..45dda07 Binary files /dev/null and b/AusRegEPPTK/build/ContactUpdateCommand.o differ diff --git a/AusRegEPPTK/build/CreateResponse.o b/AusRegEPPTK/build/CreateResponse.o new file mode 100644 index 0000000..6ccb4fe Binary files /dev/null and b/AusRegEPPTK/build/CreateResponse.o differ diff --git a/AusRegEPPTK/build/DataResponse.o b/AusRegEPPTK/build/DataResponse.o new file mode 100644 index 0000000..ffb601e Binary files /dev/null and b/AusRegEPPTK/build/DataResponse.o differ diff --git a/AusRegEPPTK/build/Disclose.o b/AusRegEPPTK/build/Disclose.o new file mode 100644 index 0000000..58fd8d4 Binary files /dev/null and b/AusRegEPPTK/build/Disclose.o differ diff --git a/AusRegEPPTK/build/DomainAddRem.o b/AusRegEPPTK/build/DomainAddRem.o new file mode 100644 index 0000000..74f5d7e Binary files /dev/null and b/AusRegEPPTK/build/DomainAddRem.o differ diff --git a/AusRegEPPTK/build/DomainCheckCommandTest b/AusRegEPPTK/build/DomainCheckCommandTest new file mode 100755 index 0000000..5155be1 Binary files /dev/null and b/AusRegEPPTK/build/DomainCheckCommandTest differ diff --git a/AusRegEPPTK/build/DomainCheckResponse.o b/AusRegEPPTK/build/DomainCheckResponse.o new file mode 100644 index 0000000..0697503 Binary files /dev/null and b/AusRegEPPTK/build/DomainCheckResponse.o differ diff --git a/AusRegEPPTK/build/DomainCheckResponseTest b/AusRegEPPTK/build/DomainCheckResponseTest new file mode 100755 index 0000000..c3a5fa9 Binary files /dev/null and b/AusRegEPPTK/build/DomainCheckResponseTest differ diff --git a/AusRegEPPTK/build/DomainCreateCommand.o b/AusRegEPPTK/build/DomainCreateCommand.o new file mode 100644 index 0000000..c1ac7d2 Binary files /dev/null and b/AusRegEPPTK/build/DomainCreateCommand.o differ diff --git a/AusRegEPPTK/build/DomainCreateResponse.o b/AusRegEPPTK/build/DomainCreateResponse.o new file mode 100644 index 0000000..893fdc4 Binary files /dev/null and b/AusRegEPPTK/build/DomainCreateResponse.o differ diff --git a/AusRegEPPTK/build/DomainDeleteCommandTest b/AusRegEPPTK/build/DomainDeleteCommandTest new file mode 100755 index 0000000..2f35956 Binary files /dev/null and b/AusRegEPPTK/build/DomainDeleteCommandTest differ diff --git a/AusRegEPPTK/build/DomainInfoCommandTest b/AusRegEPPTK/build/DomainInfoCommandTest new file mode 100755 index 0000000..07aee5a Binary files /dev/null and b/AusRegEPPTK/build/DomainInfoCommandTest differ diff --git a/AusRegEPPTK/build/DomainInfoKVResponseExtension.o b/AusRegEPPTK/build/DomainInfoKVResponseExtension.o new file mode 100644 index 0000000..682806e Binary files /dev/null and b/AusRegEPPTK/build/DomainInfoKVResponseExtension.o differ diff --git a/AusRegEPPTK/build/DomainInfoKVResponseExtensionTest b/AusRegEPPTK/build/DomainInfoKVResponseExtensionTest new file mode 100755 index 0000000..fea049f Binary files /dev/null and b/AusRegEPPTK/build/DomainInfoKVResponseExtensionTest differ diff --git a/AusRegEPPTK/build/DomainInfoResponse.o b/AusRegEPPTK/build/DomainInfoResponse.o new file mode 100644 index 0000000..2b08789 Binary files /dev/null and b/AusRegEPPTK/build/DomainInfoResponse.o differ diff --git a/AusRegEPPTK/build/DomainKVCommandExtension.o b/AusRegEPPTK/build/DomainKVCommandExtension.o new file mode 100644 index 0000000..802f0bd Binary files /dev/null and b/AusRegEPPTK/build/DomainKVCommandExtension.o differ diff --git a/AusRegEPPTK/build/DomainKVCommandExtensionTest b/AusRegEPPTK/build/DomainKVCommandExtensionTest new file mode 100755 index 0000000..09f08c4 Binary files /dev/null and b/AusRegEPPTK/build/DomainKVCommandExtensionTest differ diff --git a/AusRegEPPTK/build/DomainNotificationResponse.o b/AusRegEPPTK/build/DomainNotificationResponse.o new file mode 100644 index 0000000..724e5e8 Binary files /dev/null and b/AusRegEPPTK/build/DomainNotificationResponse.o differ diff --git a/AusRegEPPTK/build/DomainRegistrantTransferCommand.o b/AusRegEPPTK/build/DomainRegistrantTransferCommand.o new file mode 100644 index 0000000..180c8c6 Binary files /dev/null and b/AusRegEPPTK/build/DomainRegistrantTransferCommand.o differ diff --git a/AusRegEPPTK/build/DomainRegistrantTransferCommandTest b/AusRegEPPTK/build/DomainRegistrantTransferCommandTest new file mode 100755 index 0000000..9712aff Binary files /dev/null and b/AusRegEPPTK/build/DomainRegistrantTransferCommandTest differ diff --git a/AusRegEPPTK/build/DomainRegistrantTransferResponse.o b/AusRegEPPTK/build/DomainRegistrantTransferResponse.o new file mode 100644 index 0000000..47a2c80 Binary files /dev/null and b/AusRegEPPTK/build/DomainRegistrantTransferResponse.o differ diff --git a/AusRegEPPTK/build/DomainRegistrantTransferResponseTest b/AusRegEPPTK/build/DomainRegistrantTransferResponseTest new file mode 100755 index 0000000..cc4bf68 Binary files /dev/null and b/AusRegEPPTK/build/DomainRegistrantTransferResponseTest differ diff --git a/AusRegEPPTK/build/DomainRenewCommand.o b/AusRegEPPTK/build/DomainRenewCommand.o new file mode 100644 index 0000000..4b93301 Binary files /dev/null and b/AusRegEPPTK/build/DomainRenewCommand.o differ diff --git a/AusRegEPPTK/build/DomainRenewResponse.o b/AusRegEPPTK/build/DomainRenewResponse.o new file mode 100644 index 0000000..18e147f Binary files /dev/null and b/AusRegEPPTK/build/DomainRenewResponse.o differ diff --git a/AusRegEPPTK/build/DomainSecDNSCreateCommandExtension.o b/AusRegEPPTK/build/DomainSecDNSCreateCommandExtension.o new file mode 100644 index 0000000..e5a345a Binary files /dev/null and b/AusRegEPPTK/build/DomainSecDNSCreateCommandExtension.o differ diff --git a/AusRegEPPTK/build/DomainSecDNSCreateCommandExtensionTest b/AusRegEPPTK/build/DomainSecDNSCreateCommandExtensionTest new file mode 100755 index 0000000..b8cdb38 Binary files /dev/null and b/AusRegEPPTK/build/DomainSecDNSCreateCommandExtensionTest differ diff --git a/AusRegEPPTK/build/DomainSecDNSInfoResponseExtension.o b/AusRegEPPTK/build/DomainSecDNSInfoResponseExtension.o new file mode 100644 index 0000000..c795546 Binary files /dev/null and b/AusRegEPPTK/build/DomainSecDNSInfoResponseExtension.o differ diff --git a/AusRegEPPTK/build/DomainSecDNSInfoResponseExtensionTest b/AusRegEPPTK/build/DomainSecDNSInfoResponseExtensionTest new file mode 100755 index 0000000..7403809 Binary files /dev/null and b/AusRegEPPTK/build/DomainSecDNSInfoResponseExtensionTest differ diff --git a/AusRegEPPTK/build/DomainSecDNSUpdateCommandExtension.o b/AusRegEPPTK/build/DomainSecDNSUpdateCommandExtension.o new file mode 100644 index 0000000..aad57ed Binary files /dev/null and b/AusRegEPPTK/build/DomainSecDNSUpdateCommandExtension.o differ diff --git a/AusRegEPPTK/build/DomainSecDNSUpdateCommandExtensionTest b/AusRegEPPTK/build/DomainSecDNSUpdateCommandExtensionTest new file mode 100755 index 0000000..686f621 Binary files /dev/null and b/AusRegEPPTK/build/DomainSecDNSUpdateCommandExtensionTest differ diff --git a/AusRegEPPTK/build/DomainTransferQueryCommandTest b/AusRegEPPTK/build/DomainTransferQueryCommandTest new file mode 100755 index 0000000..f3eff7f Binary files /dev/null and b/AusRegEPPTK/build/DomainTransferQueryCommandTest differ diff --git a/AusRegEPPTK/build/DomainTransferResponse.o b/AusRegEPPTK/build/DomainTransferResponse.o new file mode 100644 index 0000000..11afb09 Binary files /dev/null and b/AusRegEPPTK/build/DomainTransferResponse.o differ diff --git a/AusRegEPPTK/build/DomainUpdateCommand.o b/AusRegEPPTK/build/DomainUpdateCommand.o new file mode 100644 index 0000000..1425f0a Binary files /dev/null and b/AusRegEPPTK/build/DomainUpdateCommand.o differ diff --git a/AusRegEPPTK/build/DomainUpdateCommandTest b/AusRegEPPTK/build/DomainUpdateCommandTest new file mode 100755 index 0000000..8cd7588 Binary files /dev/null and b/AusRegEPPTK/build/DomainUpdateCommandTest differ diff --git a/AusRegEPPTK/build/DomainUpdateSyncCommandExtension.o b/AusRegEPPTK/build/DomainUpdateSyncCommandExtension.o new file mode 100644 index 0000000..ce334ed Binary files /dev/null and b/AusRegEPPTK/build/DomainUpdateSyncCommandExtension.o differ diff --git a/AusRegEPPTK/build/E164Extension.o b/AusRegEPPTK/build/E164Extension.o new file mode 100644 index 0000000..56477f6 Binary files /dev/null and b/AusRegEPPTK/build/E164Extension.o differ diff --git a/AusRegEPPTK/build/EPPDateFormatter.o b/AusRegEPPTK/build/EPPDateFormatter.o new file mode 100644 index 0000000..b631d5d Binary files /dev/null and b/AusRegEPPTK/build/EPPDateFormatter.o differ diff --git a/AusRegEPPTK/build/EPPDateFormatterTest b/AusRegEPPTK/build/EPPDateFormatterTest new file mode 100755 index 0000000..b2d184f Binary files /dev/null and b/AusRegEPPTK/build/EPPDateFormatterTest differ diff --git a/AusRegEPPTK/build/EPPExceptionTest b/AusRegEPPTK/build/EPPExceptionTest new file mode 100755 index 0000000..e77fe79 Binary files /dev/null and b/AusRegEPPTK/build/EPPExceptionTest differ diff --git a/AusRegEPPTK/build/EPPWriter.o b/AusRegEPPTK/build/EPPWriter.o new file mode 100644 index 0000000..fa19e71 Binary files /dev/null and b/AusRegEPPTK/build/EPPWriter.o differ diff --git a/AusRegEPPTK/build/EnumDomainCreateCommand.o b/AusRegEPPTK/build/EnumDomainCreateCommand.o new file mode 100644 index 0000000..644ccd4 Binary files /dev/null and b/AusRegEPPTK/build/EnumDomainCreateCommand.o differ diff --git a/AusRegEPPTK/build/EnumDomainInfoResponse.o b/AusRegEPPTK/build/EnumDomainInfoResponse.o new file mode 100644 index 0000000..0c67752 Binary files /dev/null and b/AusRegEPPTK/build/EnumDomainInfoResponse.o differ diff --git a/AusRegEPPTK/build/EnumDomainInfoResponseTest b/AusRegEPPTK/build/EnumDomainInfoResponseTest new file mode 100755 index 0000000..008b5f5 Binary files /dev/null and b/AusRegEPPTK/build/EnumDomainInfoResponseTest differ diff --git a/AusRegEPPTK/build/EnumDomainUpdateCommand.o b/AusRegEPPTK/build/EnumDomainUpdateCommand.o new file mode 100644 index 0000000..ab3e95e Binary files /dev/null and b/AusRegEPPTK/build/EnumDomainUpdateCommand.o differ diff --git a/AusRegEPPTK/build/EnumType.o b/AusRegEPPTK/build/EnumType.o new file mode 100644 index 0000000..3dcd41e Binary files /dev/null and b/AusRegEPPTK/build/EnumType.o differ diff --git a/AusRegEPPTK/build/ErrorPkg.o b/AusRegEPPTK/build/ErrorPkg.o new file mode 100644 index 0000000..d48a776 Binary files /dev/null and b/AusRegEPPTK/build/ErrorPkg.o differ diff --git a/AusRegEPPTK/build/Greeting.o b/AusRegEPPTK/build/Greeting.o new file mode 100644 index 0000000..24ab7f7 Binary files /dev/null and b/AusRegEPPTK/build/Greeting.o differ diff --git a/AusRegEPPTK/build/HelloTest b/AusRegEPPTK/build/HelloTest new file mode 100755 index 0000000..b0f198c Binary files /dev/null and b/AusRegEPPTK/build/HelloTest differ diff --git a/AusRegEPPTK/build/HostAddRem.o b/AusRegEPPTK/build/HostAddRem.o new file mode 100644 index 0000000..a2ee006 Binary files /dev/null and b/AusRegEPPTK/build/HostAddRem.o differ diff --git a/AusRegEPPTK/build/HostCheckCommandTest b/AusRegEPPTK/build/HostCheckCommandTest new file mode 100755 index 0000000..e08ae4c Binary files /dev/null and b/AusRegEPPTK/build/HostCheckCommandTest differ diff --git a/AusRegEPPTK/build/HostCheckResponse.o b/AusRegEPPTK/build/HostCheckResponse.o new file mode 100644 index 0000000..d4fe390 Binary files /dev/null and b/AusRegEPPTK/build/HostCheckResponse.o differ diff --git a/AusRegEPPTK/build/HostCreateCommand.o b/AusRegEPPTK/build/HostCreateCommand.o new file mode 100644 index 0000000..a9bb011 Binary files /dev/null and b/AusRegEPPTK/build/HostCreateCommand.o differ diff --git a/AusRegEPPTK/build/HostCreateCommandTest b/AusRegEPPTK/build/HostCreateCommandTest new file mode 100755 index 0000000..1278b7c Binary files /dev/null and b/AusRegEPPTK/build/HostCreateCommandTest differ diff --git a/AusRegEPPTK/build/HostCreateResponse.o b/AusRegEPPTK/build/HostCreateResponse.o new file mode 100644 index 0000000..8eb98cd Binary files /dev/null and b/AusRegEPPTK/build/HostCreateResponse.o differ diff --git a/AusRegEPPTK/build/HostDeleteCommandTest b/AusRegEPPTK/build/HostDeleteCommandTest new file mode 100755 index 0000000..2c8d6ad Binary files /dev/null and b/AusRegEPPTK/build/HostDeleteCommandTest differ diff --git a/AusRegEPPTK/build/HostInfoCommandTest b/AusRegEPPTK/build/HostInfoCommandTest new file mode 100755 index 0000000..aced1e2 Binary files /dev/null and b/AusRegEPPTK/build/HostInfoCommandTest differ diff --git a/AusRegEPPTK/build/HostInfoResponse.o b/AusRegEPPTK/build/HostInfoResponse.o new file mode 100644 index 0000000..650266b Binary files /dev/null and b/AusRegEPPTK/build/HostInfoResponse.o differ diff --git a/AusRegEPPTK/build/HostInfoResponseTest b/AusRegEPPTK/build/HostInfoResponseTest new file mode 100755 index 0000000..fde355e Binary files /dev/null and b/AusRegEPPTK/build/HostInfoResponseTest differ diff --git a/AusRegEPPTK/build/HostUpdateCommand.o b/AusRegEPPTK/build/HostUpdateCommand.o new file mode 100644 index 0000000..6aaf221 Binary files /dev/null and b/AusRegEPPTK/build/HostUpdateCommand.o differ diff --git a/AusRegEPPTK/build/IPVersion.o b/AusRegEPPTK/build/IPVersion.o new file mode 100644 index 0000000..e0be7e2 Binary files /dev/null and b/AusRegEPPTK/build/IPVersion.o differ diff --git a/AusRegEPPTK/build/IPVersionTest b/AusRegEPPTK/build/IPVersionTest new file mode 100755 index 0000000..8908533 Binary files /dev/null and b/AusRegEPPTK/build/IPVersionTest differ diff --git a/AusRegEPPTK/build/InetAddress.o b/AusRegEPPTK/build/InetAddress.o new file mode 100644 index 0000000..954a18d Binary files /dev/null and b/AusRegEPPTK/build/InetAddress.o differ diff --git a/AusRegEPPTK/build/InfoResponse.o b/AusRegEPPTK/build/InfoResponse.o new file mode 100644 index 0000000..a982f63 Binary files /dev/null and b/AusRegEPPTK/build/InfoResponse.o differ diff --git a/AusRegEPPTK/build/KVExtension.o b/AusRegEPPTK/build/KVExtension.o new file mode 100644 index 0000000..4743547 Binary files /dev/null and b/AusRegEPPTK/build/KVExtension.o differ diff --git a/AusRegEPPTK/build/Logger.o b/AusRegEPPTK/build/Logger.o new file mode 100644 index 0000000..c9fe430 Binary files /dev/null and b/AusRegEPPTK/build/Logger.o differ diff --git a/AusRegEPPTK/build/LoginCommand.o b/AusRegEPPTK/build/LoginCommand.o new file mode 100644 index 0000000..ab7e18f Binary files /dev/null and b/AusRegEPPTK/build/LoginCommand.o differ diff --git a/AusRegEPPTK/build/LoginCommandTest b/AusRegEPPTK/build/LoginCommandTest new file mode 100755 index 0000000..0f24327 Binary files /dev/null and b/AusRegEPPTK/build/LoginCommandTest differ diff --git a/AusRegEPPTK/build/LogoutCommandTest b/AusRegEPPTK/build/LogoutCommandTest new file mode 100755 index 0000000..ff96bb6 Binary files /dev/null and b/AusRegEPPTK/build/LogoutCommandTest differ diff --git a/AusRegEPPTK/build/NAPTR.o b/AusRegEPPTK/build/NAPTR.o new file mode 100644 index 0000000..11588d0 Binary files /dev/null and b/AusRegEPPTK/build/NAPTR.o differ diff --git a/AusRegEPPTK/build/NamespaceResolver.o b/AusRegEPPTK/build/NamespaceResolver.o new file mode 100644 index 0000000..d2b3f76 Binary files /dev/null and b/AusRegEPPTK/build/NamespaceResolver.o differ diff --git a/AusRegEPPTK/build/NotificationResponse.o b/AusRegEPPTK/build/NotificationResponse.o new file mode 100644 index 0000000..01b7830 Binary files /dev/null and b/AusRegEPPTK/build/NotificationResponse.o differ diff --git a/AusRegEPPTK/build/ObjectCommand.o b/AusRegEPPTK/build/ObjectCommand.o new file mode 100644 index 0000000..40eaf2c Binary files /dev/null and b/AusRegEPPTK/build/ObjectCommand.o differ diff --git a/AusRegEPPTK/build/Period.o b/AusRegEPPTK/build/Period.o new file mode 100644 index 0000000..ec54e69 Binary files /dev/null and b/AusRegEPPTK/build/Period.o differ diff --git a/AusRegEPPTK/build/PeriodUnit.o b/AusRegEPPTK/build/PeriodUnit.o new file mode 100644 index 0000000..64f4b8c Binary files /dev/null and b/AusRegEPPTK/build/PeriodUnit.o differ diff --git a/AusRegEPPTK/build/PollAckCommandTest b/AusRegEPPTK/build/PollAckCommandTest new file mode 100755 index 0000000..fa35bcf Binary files /dev/null and b/AusRegEPPTK/build/PollAckCommandTest differ diff --git a/AusRegEPPTK/build/PollOperation.o b/AusRegEPPTK/build/PollOperation.o new file mode 100644 index 0000000..3d8a969 Binary files /dev/null and b/AusRegEPPTK/build/PollOperation.o differ diff --git a/AusRegEPPTK/build/PollResponse.o b/AusRegEPPTK/build/PollResponse.o new file mode 100644 index 0000000..525de0c Binary files /dev/null and b/AusRegEPPTK/build/PollResponse.o differ diff --git a/AusRegEPPTK/build/PollResponseTest b/AusRegEPPTK/build/PollResponseTest new file mode 100755 index 0000000..650dda4 Binary files /dev/null and b/AusRegEPPTK/build/PollResponseTest differ diff --git a/AusRegEPPTK/build/PostalInfo.o b/AusRegEPPTK/build/PostalInfo.o new file mode 100644 index 0000000..a54582a Binary files /dev/null and b/AusRegEPPTK/build/PostalInfo.o differ diff --git a/AusRegEPPTK/build/PostalInfoType.o b/AusRegEPPTK/build/PostalInfoType.o new file mode 100644 index 0000000..c9006c0 Binary files /dev/null and b/AusRegEPPTK/build/PostalInfoType.o differ diff --git a/AusRegEPPTK/build/Properties.o b/AusRegEPPTK/build/Properties.o new file mode 100644 index 0000000..8d08f91 Binary files /dev/null and b/AusRegEPPTK/build/Properties.o differ diff --git a/AusRegEPPTK/build/ProtocolExtensionCommand.o b/AusRegEPPTK/build/ProtocolExtensionCommand.o new file mode 100644 index 0000000..48d2925 Binary files /dev/null and b/AusRegEPPTK/build/ProtocolExtensionCommand.o differ diff --git a/AusRegEPPTK/build/ReceiveSE.o b/AusRegEPPTK/build/ReceiveSE.o new file mode 100644 index 0000000..b6fc819 Binary files /dev/null and b/AusRegEPPTK/build/ReceiveSE.o differ diff --git a/AusRegEPPTK/build/RegistrantObjectType.o b/AusRegEPPTK/build/RegistrantObjectType.o new file mode 100644 index 0000000..942c93a Binary files /dev/null and b/AusRegEPPTK/build/RegistrantObjectType.o differ diff --git a/AusRegEPPTK/build/RegistrantTransferCommandType.o b/AusRegEPPTK/build/RegistrantTransferCommandType.o new file mode 100644 index 0000000..d657a63 Binary files /dev/null and b/AusRegEPPTK/build/RegistrantTransferCommandType.o differ diff --git a/AusRegEPPTK/build/Response.o b/AusRegEPPTK/build/Response.o new file mode 100644 index 0000000..85ac2fd Binary files /dev/null and b/AusRegEPPTK/build/Response.o differ diff --git a/AusRegEPPTK/build/ResponseExtension.o b/AusRegEPPTK/build/ResponseExtension.o new file mode 100644 index 0000000..26ac8e6 Binary files /dev/null and b/AusRegEPPTK/build/ResponseExtension.o differ diff --git a/AusRegEPPTK/build/Result.o b/AusRegEPPTK/build/Result.o new file mode 100644 index 0000000..0cf6d42 Binary files /dev/null and b/AusRegEPPTK/build/Result.o differ diff --git a/AusRegEPPTK/build/ResultCounter.o b/AusRegEPPTK/build/ResultCounter.o new file mode 100644 index 0000000..b17bee8 Binary files /dev/null and b/AusRegEPPTK/build/ResultCounter.o differ diff --git a/AusRegEPPTK/build/SSLException.o b/AusRegEPPTK/build/SSLException.o new file mode 100644 index 0000000..8da7b86 Binary files /dev/null and b/AusRegEPPTK/build/SSLException.o differ diff --git a/AusRegEPPTK/build/SecDNSChgType.o b/AusRegEPPTK/build/SecDNSChgType.o new file mode 100644 index 0000000..6ab5068 Binary files /dev/null and b/AusRegEPPTK/build/SecDNSChgType.o differ diff --git a/AusRegEPPTK/build/SecDNSDSData.o b/AusRegEPPTK/build/SecDNSDSData.o new file mode 100644 index 0000000..169e632 Binary files /dev/null and b/AusRegEPPTK/build/SecDNSDSData.o differ diff --git a/AusRegEPPTK/build/SecDNSDSOrKeyType.o b/AusRegEPPTK/build/SecDNSDSOrKeyType.o new file mode 100644 index 0000000..18425a6 Binary files /dev/null and b/AusRegEPPTK/build/SecDNSDSOrKeyType.o differ diff --git a/AusRegEPPTK/build/SecDNSExtension.o b/AusRegEPPTK/build/SecDNSExtension.o new file mode 100644 index 0000000..0e69ecc Binary files /dev/null and b/AusRegEPPTK/build/SecDNSExtension.o differ diff --git a/AusRegEPPTK/build/SecDNSKeyData.o b/AusRegEPPTK/build/SecDNSKeyData.o new file mode 100644 index 0000000..3fdbe9d Binary files /dev/null and b/AusRegEPPTK/build/SecDNSKeyData.o differ diff --git a/AusRegEPPTK/build/SecDNSRemType.o b/AusRegEPPTK/build/SecDNSRemType.o new file mode 100644 index 0000000..727ff97 Binary files /dev/null and b/AusRegEPPTK/build/SecDNSRemType.o differ diff --git a/AusRegEPPTK/build/SendSE.o b/AusRegEPPTK/build/SendSE.o new file mode 100644 index 0000000..8ae085e Binary files /dev/null and b/AusRegEPPTK/build/SendSE.o differ diff --git a/AusRegEPPTK/build/SessionFactory.o b/AusRegEPPTK/build/SessionFactory.o new file mode 100644 index 0000000..eec224e Binary files /dev/null and b/AusRegEPPTK/build/SessionFactory.o differ diff --git a/AusRegEPPTK/build/SessionManagerFactory.o b/AusRegEPPTK/build/SessionManagerFactory.o new file mode 100644 index 0000000..cf39425 Binary files /dev/null and b/AusRegEPPTK/build/SessionManagerFactory.o differ diff --git a/AusRegEPPTK/build/SessionManagerImpl.o b/AusRegEPPTK/build/SessionManagerImpl.o new file mode 100644 index 0000000..8ccd6da Binary files /dev/null and b/AusRegEPPTK/build/SessionManagerImpl.o differ diff --git a/AusRegEPPTK/build/SessionManagerPropertiesImpl.o b/AusRegEPPTK/build/SessionManagerPropertiesImpl.o new file mode 100644 index 0000000..e6116f0 Binary files /dev/null and b/AusRegEPPTK/build/SessionManagerPropertiesImpl.o differ diff --git a/AusRegEPPTK/build/SessionManagerTest b/AusRegEPPTK/build/SessionManagerTest new file mode 100755 index 0000000..06360db Binary files /dev/null and b/AusRegEPPTK/build/SessionManagerTest differ diff --git a/AusRegEPPTK/build/SessionPoolImpl.o b/AusRegEPPTK/build/SessionPoolImpl.o new file mode 100644 index 0000000..b6ad94a Binary files /dev/null and b/AusRegEPPTK/build/SessionPoolImpl.o differ diff --git a/AusRegEPPTK/build/SessionTest b/AusRegEPPTK/build/SessionTest new file mode 100755 index 0000000..78c183e Binary files /dev/null and b/AusRegEPPTK/build/SessionTest differ diff --git a/AusRegEPPTK/build/StandardCommandType.o b/AusRegEPPTK/build/StandardCommandType.o new file mode 100644 index 0000000..2b06fd5 Binary files /dev/null and b/AusRegEPPTK/build/StandardCommandType.o differ diff --git a/AusRegEPPTK/build/StandardObjectType.o b/AusRegEPPTK/build/StandardObjectType.o new file mode 100644 index 0000000..7b19fa3 Binary files /dev/null and b/AusRegEPPTK/build/StandardObjectType.o differ diff --git a/AusRegEPPTK/build/StringUtils.o b/AusRegEPPTK/build/StringUtils.o new file mode 100644 index 0000000..281d5a2 Binary files /dev/null and b/AusRegEPPTK/build/StringUtils.o differ diff --git a/AusRegEPPTK/build/SyncExtension.o b/AusRegEPPTK/build/SyncExtension.o new file mode 100644 index 0000000..91e85c7 Binary files /dev/null and b/AusRegEPPTK/build/SyncExtension.o differ diff --git a/AusRegEPPTK/build/SystemProperties.o b/AusRegEPPTK/build/SystemProperties.o new file mode 100644 index 0000000..9790edc Binary files /dev/null and b/AusRegEPPTK/build/SystemProperties.o differ diff --git a/AusRegEPPTK/build/TLSContext.o b/AusRegEPPTK/build/TLSContext.o new file mode 100644 index 0000000..834551c Binary files /dev/null and b/AusRegEPPTK/build/TLSContext.o differ diff --git a/AusRegEPPTK/build/TLSSession.o b/AusRegEPPTK/build/TLSSession.o new file mode 100644 index 0000000..f4e5df1 Binary files /dev/null and b/AusRegEPPTK/build/TLSSession.o differ diff --git a/AusRegEPPTK/build/TLSSocket.o b/AusRegEPPTK/build/TLSSocket.o new file mode 100644 index 0000000..64e888a Binary files /dev/null and b/AusRegEPPTK/build/TLSSocket.o differ diff --git a/AusRegEPPTK/build/Timer.o b/AusRegEPPTK/build/Timer.o new file mode 100644 index 0000000..aaf8f4d Binary files /dev/null and b/AusRegEPPTK/build/Timer.o differ diff --git a/AusRegEPPTK/build/TimerTest b/AusRegEPPTK/build/TimerTest new file mode 100755 index 0000000..66317eb Binary files /dev/null and b/AusRegEPPTK/build/TimerTest differ diff --git a/AusRegEPPTK/build/TransferCommand.o b/AusRegEPPTK/build/TransferCommand.o new file mode 100644 index 0000000..7a57946 Binary files /dev/null and b/AusRegEPPTK/build/TransferCommand.o differ diff --git a/AusRegEPPTK/build/TransferOp.o b/AusRegEPPTK/build/TransferOp.o new file mode 100644 index 0000000..f90d665 Binary files /dev/null and b/AusRegEPPTK/build/TransferOp.o differ diff --git a/AusRegEPPTK/build/TransferResponse.o b/AusRegEPPTK/build/TransferResponse.o new file mode 100644 index 0000000..92fb594 Binary files /dev/null and b/AusRegEPPTK/build/TransferResponse.o differ diff --git a/AusRegEPPTK/build/UserPassMismatchException.o b/AusRegEPPTK/build/UserPassMismatchException.o new file mode 100644 index 0000000..8fb1757 Binary files /dev/null and b/AusRegEPPTK/build/UserPassMismatchException.o differ diff --git a/AusRegEPPTK/build/XMLDocument.o b/AusRegEPPTK/build/XMLDocument.o new file mode 100644 index 0000000..e6621d5 Binary files /dev/null and b/AusRegEPPTK/build/XMLDocument.o differ diff --git a/AusRegEPPTK/build/XMLGregorianCalendar.o b/AusRegEPPTK/build/XMLGregorianCalendar.o new file mode 100644 index 0000000..e8e2ecd Binary files /dev/null and b/AusRegEPPTK/build/XMLGregorianCalendar.o differ diff --git a/AusRegEPPTK/build/XMLGregorianCalendarTest b/AusRegEPPTK/build/XMLGregorianCalendarTest new file mode 100755 index 0000000..4af1d2d Binary files /dev/null and b/AusRegEPPTK/build/XMLGregorianCalendarTest differ diff --git a/AusRegEPPTK/build/XMLParser.o b/AusRegEPPTK/build/XMLParser.o new file mode 100644 index 0000000..a8a7844 Binary files /dev/null and b/AusRegEPPTK/build/XMLParser.o differ diff --git a/AusRegEPPTK/build/XMLWriter.o b/AusRegEPPTK/build/XMLWriter.o new file mode 100644 index 0000000..fed2fc9 Binary files /dev/null and b/AusRegEPPTK/build/XMLWriter.o differ diff --git a/AusRegEPPTK/build/boolean.o b/AusRegEPPTK/build/boolean.o new file mode 100644 index 0000000..296d2bc Binary files /dev/null and b/AusRegEPPTK/build/boolean.o differ diff --git a/AusRegEPPTK/build/config.o b/AusRegEPPTK/build/config.o new file mode 100644 index 0000000..c3bd4c5 Binary files /dev/null and b/AusRegEPPTK/build/config.o differ diff --git a/AusRegEPPTK/build/init.o b/AusRegEPPTK/build/init.o new file mode 100644 index 0000000..1acaf40 Binary files /dev/null and b/AusRegEPPTK/build/init.o differ diff --git a/AusRegEPPTK/build/log.o b/AusRegEPPTK/build/log.o new file mode 100644 index 0000000..1fe4278 Binary files /dev/null and b/AusRegEPPTK/build/log.o differ diff --git a/AusRegEPPTK/common/Constants.d b/AusRegEPPTK/common/Constants.d new file mode 100644 index 0000000..a348cd6 --- /dev/null +++ b/AusRegEPPTK/common/Constants.d @@ -0,0 +1,2 @@ +build/Constants.o common/Constants.d: common/Constants.cpp \ + common/Constants.hpp diff --git a/AusRegEPPTK/common/EPPExceptionTest.d b/AusRegEPPTK/common/EPPExceptionTest.d new file mode 100644 index 0000000..905686d --- /dev/null +++ b/AusRegEPPTK/common/EPPExceptionTest.d @@ -0,0 +1,2 @@ +build/EPPExceptionTest.o common/EPPExceptionTest.d: \ + common/EPPExceptionTest.cpp common/EPPException.hpp common/Test.hpp diff --git a/AusRegEPPTK/common/ErrorPkg.d b/AusRegEPPTK/common/ErrorPkg.d new file mode 100644 index 0000000..365209a --- /dev/null +++ b/AusRegEPPTK/common/ErrorPkg.d @@ -0,0 +1,4 @@ +build/ErrorPkg.o common/ErrorPkg.d: common/ErrorPkg.cpp \ + common/ErrorPkg.hpp common/Properties.hpp config/config.h \ + common/EPPException.hpp common/ConfigurationError.hpp common/Logger.hpp \ + common/StringUtils.hpp common/SystemProperties.hpp diff --git a/AusRegEPPTK/common/Logger.d b/AusRegEPPTK/common/Logger.d new file mode 100644 index 0000000..39b0e42 --- /dev/null +++ b/AusRegEPPTK/common/Logger.d @@ -0,0 +1,4 @@ +build/Logger.o common/Logger.d: common/Logger.cpp \ + common/SystemProperties.hpp common/Properties.hpp config/config.h \ + common/EPPException.hpp common/Logger.hpp common/ConfigurationError.hpp \ + common/AutoMutex.hpp diff --git a/AusRegEPPTK/common/Properties.d b/AusRegEPPTK/common/Properties.d new file mode 100644 index 0000000..7a03794 --- /dev/null +++ b/AusRegEPPTK/common/Properties.d @@ -0,0 +1,3 @@ +build/Properties.o common/Properties.d: common/Properties.cpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + config/boolean.h diff --git a/AusRegEPPTK/common/StringUtils.d b/AusRegEPPTK/common/StringUtils.d new file mode 100644 index 0000000..e628880 --- /dev/null +++ b/AusRegEPPTK/common/StringUtils.d @@ -0,0 +1,2 @@ +build/StringUtils.o common/StringUtils.d: common/StringUtils.cpp \ + common/StringUtils.hpp diff --git a/AusRegEPPTK/common/SystemProperties.d b/AusRegEPPTK/common/SystemProperties.d new file mode 100644 index 0000000..4f41b89 --- /dev/null +++ b/AusRegEPPTK/common/SystemProperties.d @@ -0,0 +1,3 @@ +build/SystemProperties.o common/SystemProperties.d: \ + common/SystemProperties.cpp common/SystemProperties.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp diff --git a/AusRegEPPTK/common/init.d b/AusRegEPPTK/common/init.d new file mode 100644 index 0000000..aa029ae --- /dev/null +++ b/AusRegEPPTK/common/init.d @@ -0,0 +1,10 @@ +build/init.o common/init.d: common/init.cpp common/SystemProperties.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/Logger.hpp common/ConfigurationError.hpp common/ErrorPkg.hpp \ + se/SendSE.hpp xml/EPPWriter.hpp xml/XMLWriter.hpp \ + xml/ParsingException.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \ + se/IPVersion.hpp se/EnumType.hpp se/IllegalArgException.hpp \ + se/PostalInfoType.hpp se/StandardCommandType.hpp se/CommandType.hpp \ + common/StringUtils.hpp se/AddRemType.hpp se/StandardObjectType.hpp \ + se/ObjectType.hpp se/PeriodUnit.hpp se/PollOperation.hpp \ + se/TransferOp.hpp xml/XMLParser.hpp xml/XMLInit.hpp diff --git a/AusRegEPPTK/config/boolean.d b/AusRegEPPTK/config/boolean.d new file mode 100644 index 0000000..aeee3bf --- /dev/null +++ b/AusRegEPPTK/config/boolean.d @@ -0,0 +1 @@ +build/boolean.o config/boolean.d: config/boolean.c config/boolean.h diff --git a/AusRegEPPTK/config/config.d b/AusRegEPPTK/config/config.d new file mode 100644 index 0000000..4749019 --- /dev/null +++ b/AusRegEPPTK/config/config.d @@ -0,0 +1,2 @@ +build/config.o config/config.d: config/config.c config/config.h \ + config/log.h config/boolean.h config/mem_debug.h diff --git a/AusRegEPPTK/config/log.d b/AusRegEPPTK/config/log.d new file mode 100644 index 0000000..f728be0 --- /dev/null +++ b/AusRegEPPTK/config/log.d @@ -0,0 +1 @@ +build/log.o config/log.d: config/log.c config/log.h config/boolean.h diff --git a/AusRegEPPTK/lib/libAusRegEPPTK.so b/AusRegEPPTK/lib/libAusRegEPPTK.so new file mode 100755 index 0000000..21bfa95 Binary files /dev/null and b/AusRegEPPTK/lib/libAusRegEPPTK.so differ diff --git a/AusRegEPPTK/se/AddRemType.d b/AusRegEPPTK/se/AddRemType.d new file mode 100644 index 0000000..32cb8c2 --- /dev/null +++ b/AusRegEPPTK/se/AddRemType.d @@ -0,0 +1,2 @@ +build/AddRemType.o se/AddRemType.d: se/AddRemType.cpp se/AddRemType.hpp \ + se/EnumType.hpp se/IllegalArgException.hpp common/EPPException.hpp diff --git a/AusRegEPPTK/se/AeDomainCreateCommand.d b/AusRegEPPTK/se/AeDomainCreateCommand.d new file mode 100644 index 0000000..d0301cd --- /dev/null +++ b/AusRegEPPTK/se/AeDomainCreateCommand.d @@ -0,0 +1,11 @@ +build/AeDomainCreateCommand.o se/AeDomainCreateCommand.d: \ + se/AeDomainCreateCommand.cpp se/AeDomainCreateCommand.hpp \ + common/Deprecated.hpp se/DomainCreateCommand.hpp se/CreateCommand.hpp \ + se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp \ + xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/EPPException.hpp common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/Period.hpp se/PeriodUnit.hpp xml/XMLHelper.hpp xml/XStr.hpp \ + se/AeExtension.hpp common/ErrorPkg.hpp diff --git a/AusRegEPPTK/se/AeDomainCreateCommandTest.d b/AusRegEPPTK/se/AeDomainCreateCommandTest.d new file mode 100644 index 0000000..c4772a9 --- /dev/null +++ b/AusRegEPPTK/se/AeDomainCreateCommandTest.d @@ -0,0 +1,13 @@ +build/AeDomainCreateCommandTest.o se/AeDomainCreateCommandTest.d: \ + se/AeDomainCreateCommandTest.cpp se/ContactCheckCommand.hpp \ + se/CheckCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \ + xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \ + se/CommandExtension.hpp se/ObjectType.hpp se/StandardCommandType.hpp \ + se/EnumType.hpp se/IllegalArgException.hpp se/CommandType.hpp \ + common/StringUtils.hpp se/StandardObjectType.hpp \ + se/AeDomainCreateCommand.hpp common/Deprecated.hpp \ + se/DomainCreateCommand.hpp se/CreateCommand.hpp se/Period.hpp \ + se/PeriodUnit.hpp se/CLTRID.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp common/init.hpp common/Test.hpp diff --git a/AusRegEPPTK/se/AeDomainInfoResponse.d b/AusRegEPPTK/se/AeDomainInfoResponse.d new file mode 100644 index 0000000..5e504b6 --- /dev/null +++ b/AusRegEPPTK/se/AeDomainInfoResponse.d @@ -0,0 +1,10 @@ +build/AeDomainInfoResponse.o se/AeDomainInfoResponse.d: \ + se/AeDomainInfoResponse.cpp se/AeDomainInfoResponse.hpp \ + common/Deprecated.hpp se/DomainInfoResponse.hpp se/InfoResponse.hpp \ + se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \ + common/EPPException.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \ + se/ObjectType.hpp se/Status.hpp common/StringUtils.hpp \ + se/StandardObjectType.hpp se/EnumType.hpp diff --git a/AusRegEPPTK/se/AeDomainModifyRegistrantCommand.d b/AusRegEPPTK/se/AeDomainModifyRegistrantCommand.d new file mode 100644 index 0000000..0bc8f1f --- /dev/null +++ b/AusRegEPPTK/se/AeDomainModifyRegistrantCommand.d @@ -0,0 +1,11 @@ +build/AeDomainModifyRegistrantCommand.o se/AeDomainModifyRegistrantCommand.d: \ + se/AeDomainModifyRegistrantCommand.cpp \ + se/AeDomainModifyRegistrantCommand.hpp common/Deprecated.hpp \ + se/DomainUpdateCommand.hpp se/UpdateCommand.hpp se/ObjectCommand.hpp \ + se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp xml/XMLWriter.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/EPPException.hpp common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \ + common/ErrorPkg.hpp se/AeExtension.hpp xml/XMLHelper.hpp xml/XStr.hpp diff --git a/AusRegEPPTK/se/AeDomainObjectType.d b/AusRegEPPTK/se/AeDomainObjectType.d new file mode 100644 index 0000000..c3afa87 --- /dev/null +++ b/AusRegEPPTK/se/AeDomainObjectType.d @@ -0,0 +1,2 @@ +build/AeDomainObjectType.o se/AeDomainObjectType.d: \ + se/AeDomainObjectType.cpp se/AeDomainObjectType.hpp se/ObjectType.hpp diff --git a/AusRegEPPTK/se/AeDomainTransferRegistrantCommand.d b/AusRegEPPTK/se/AeDomainTransferRegistrantCommand.d new file mode 100644 index 0000000..d889272 --- /dev/null +++ b/AusRegEPPTK/se/AeDomainTransferRegistrantCommand.d @@ -0,0 +1,13 @@ +build/AeDomainTransferRegistrantCommand.o se/AeDomainTransferRegistrantCommand.d: \ + se/AeDomainTransferRegistrantCommand.cpp \ + se/AeDomainTransferRegistrantCommand.hpp common/Deprecated.hpp \ + se/ProtocolExtensionCommand.hpp se/SendSE.hpp xml/EPPWriter.hpp \ + xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/EPPException.hpp common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/ObjectType.hpp se/Extension.hpp xml/XStr.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/AeExtension.hpp se/AeDomainObjectType.hpp \ + se/ObjectType.hpp se/RegistrantTransferCommandType.hpp se/Period.hpp \ + se/PeriodUnit.hpp se/EnumType.hpp common/ErrorPkg.hpp \ + se/EPPDateFormatter.hpp xml/XMLHelper.hpp diff --git a/AusRegEPPTK/se/AeDomainTransferRegistrantResponse.d b/AusRegEPPTK/se/AeDomainTransferRegistrantResponse.d new file mode 100644 index 0000000..31cd678 --- /dev/null +++ b/AusRegEPPTK/se/AeDomainTransferRegistrantResponse.d @@ -0,0 +1,11 @@ +build/AeDomainTransferRegistrantResponse.o se/AeDomainTransferRegistrantResponse.d: \ + se/AeDomainTransferRegistrantResponse.cpp \ + se/AeDomainTransferRegistrantResponse.hpp common/Deprecated.hpp \ + se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \ + common/EPPException.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \ + se/ObjectType.hpp se/AeDomainObjectType.hpp se/ObjectType.hpp \ + se/RegistrantTransferCommandType.hpp se/CommandType.hpp \ + common/StringUtils.hpp se/EPPDateFormatter.hpp diff --git a/AusRegEPPTK/se/AeExtension.d b/AusRegEPPTK/se/AeExtension.d new file mode 100644 index 0000000..d96f749 --- /dev/null +++ b/AusRegEPPTK/se/AeExtension.d @@ -0,0 +1,2 @@ +build/AeExtension.o se/AeExtension.d: se/AeExtension.cpp \ + se/AeExtension.hpp se/Extension.hpp diff --git a/AusRegEPPTK/se/ArDomainObjectType.d b/AusRegEPPTK/se/ArDomainObjectType.d new file mode 100644 index 0000000..c6bcd91 --- /dev/null +++ b/AusRegEPPTK/se/ArDomainObjectType.d @@ -0,0 +1,2 @@ +build/ArDomainObjectType.o se/ArDomainObjectType.d: \ + se/ArDomainObjectType.cpp se/ArDomainObjectType.hpp se/ObjectType.hpp diff --git a/AusRegEPPTK/se/ArDomainPolicyDeleteCommand.d b/AusRegEPPTK/se/ArDomainPolicyDeleteCommand.d new file mode 100644 index 0000000..c7cf1b4 --- /dev/null +++ b/AusRegEPPTK/se/ArDomainPolicyDeleteCommand.d @@ -0,0 +1,9 @@ +build/ArDomainPolicyDeleteCommand.o se/ArDomainPolicyDeleteCommand.d: \ + se/ArDomainPolicyDeleteCommand.cpp se/ArDomainPolicyDeleteCommand.hpp \ + se/Extension.hpp se/ProtocolExtensionCommand.hpp se/SendSE.hpp \ + xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp xml/ParsingException.hpp \ + se/CommandType.hpp common/StringUtils.hpp se/ObjectType.hpp xml/XStr.hpp \ + se/ArExtension.hpp se/ArDomainObjectType.hpp se/ObjectType.hpp \ + xml/XMLHelper.hpp diff --git a/AusRegEPPTK/se/ArDomainPolicyDeleteCommandTest.d b/AusRegEPPTK/se/ArDomainPolicyDeleteCommandTest.d new file mode 100644 index 0000000..db7373f --- /dev/null +++ b/AusRegEPPTK/se/ArDomainPolicyDeleteCommandTest.d @@ -0,0 +1,9 @@ +build/ArDomainPolicyDeleteCommandTest.o se/ArDomainPolicyDeleteCommandTest.d: \ + se/ArDomainPolicyDeleteCommandTest.cpp \ + se/ArDomainPolicyDeleteCommand.hpp se/Extension.hpp \ + se/ProtocolExtensionCommand.hpp se/SendSE.hpp xml/EPPWriter.hpp \ + xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/EPPException.hpp common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/ObjectType.hpp xml/XStr.hpp se/CLTRID.hpp common/init.hpp \ + session/Timer.hpp common/ParameterSyntaxException.hpp common/Test.hpp diff --git a/AusRegEPPTK/se/ArDomainPolicyUndeleteCommand.d b/AusRegEPPTK/se/ArDomainPolicyUndeleteCommand.d new file mode 100644 index 0000000..0c83749 --- /dev/null +++ b/AusRegEPPTK/se/ArDomainPolicyUndeleteCommand.d @@ -0,0 +1,9 @@ +build/ArDomainPolicyUndeleteCommand.o se/ArDomainPolicyUndeleteCommand.d: \ + se/ArDomainPolicyUndeleteCommand.cpp \ + se/ArDomainPolicyUndeleteCommand.hpp se/ProtocolExtensionCommand.hpp \ + se/SendSE.hpp xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp xml/ParsingException.hpp \ + se/CommandType.hpp common/StringUtils.hpp se/ObjectType.hpp \ + se/Extension.hpp xml/XStr.hpp se/ArExtension.hpp \ + se/ArDomainObjectType.hpp se/ObjectType.hpp xml/XMLHelper.hpp diff --git a/AusRegEPPTK/se/ArDomainPolicyUndeleteCommandTest.d b/AusRegEPPTK/se/ArDomainPolicyUndeleteCommandTest.d new file mode 100644 index 0000000..3abab83 --- /dev/null +++ b/AusRegEPPTK/se/ArDomainPolicyUndeleteCommandTest.d @@ -0,0 +1,9 @@ +build/ArDomainPolicyUndeleteCommandTest.o se/ArDomainPolicyUndeleteCommandTest.d: \ + se/ArDomainPolicyUndeleteCommandTest.cpp \ + se/ArDomainPolicyUndeleteCommand.hpp se/ProtocolExtensionCommand.hpp \ + se/SendSE.hpp xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp xml/ParsingException.hpp \ + se/CommandType.hpp common/StringUtils.hpp se/ObjectType.hpp \ + se/Extension.hpp xml/XStr.hpp se/CLTRID.hpp common/init.hpp \ + session/Timer.hpp common/ParameterSyntaxException.hpp common/Test.hpp diff --git a/AusRegEPPTK/se/ArDomainUndeleteCommand.d b/AusRegEPPTK/se/ArDomainUndeleteCommand.d new file mode 100644 index 0000000..8b14d92 --- /dev/null +++ b/AusRegEPPTK/se/ArDomainUndeleteCommand.d @@ -0,0 +1,8 @@ +build/ArDomainUndeleteCommand.o se/ArDomainUndeleteCommand.d: \ + se/ArDomainUndeleteCommand.cpp se/ArDomainUndeleteCommand.hpp \ + se/ProtocolExtensionCommand.hpp se/SendSE.hpp xml/EPPWriter.hpp \ + xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/EPPException.hpp common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/ObjectType.hpp se/Extension.hpp xml/XStr.hpp se/ArExtension.hpp \ + se/ArDomainObjectType.hpp se/ObjectType.hpp xml/XMLHelper.hpp diff --git a/AusRegEPPTK/se/ArDomainUndeleteCommandTest.d b/AusRegEPPTK/se/ArDomainUndeleteCommandTest.d new file mode 100644 index 0000000..d0d7c17 --- /dev/null +++ b/AusRegEPPTK/se/ArDomainUndeleteCommandTest.d @@ -0,0 +1,10 @@ +build/ArDomainUndeleteCommandTest.o se/ArDomainUndeleteCommandTest.d: \ + se/ArDomainUndeleteCommandTest.cpp se/ArDomainUndeleteCommand.hpp \ + se/ProtocolExtensionCommand.hpp se/SendSE.hpp xml/EPPWriter.hpp \ + xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/EPPException.hpp common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/ObjectType.hpp se/Extension.hpp xml/XStr.hpp se/CLTRID.hpp \ + se/Period.hpp se/PeriodUnit.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp common/init.hpp common/Test.hpp diff --git a/AusRegEPPTK/se/ArDomainUnrenewCommand.d b/AusRegEPPTK/se/ArDomainUnrenewCommand.d new file mode 100644 index 0000000..7cfba17 --- /dev/null +++ b/AusRegEPPTK/se/ArDomainUnrenewCommand.d @@ -0,0 +1,10 @@ +build/ArDomainUnrenewCommand.o se/ArDomainUnrenewCommand.d: \ + se/ArDomainUnrenewCommand.cpp se/ArDomainUnrenewCommand.hpp \ + se/ProtocolExtensionCommand.hpp se/SendSE.hpp xml/EPPWriter.hpp \ + xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/EPPException.hpp common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/ObjectType.hpp se/Extension.hpp xml/XStr.hpp se/ArExtension.hpp \ + se/ArDomainObjectType.hpp se/ObjectType.hpp se/EPPDateFormatter.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp xml/XMLHelper.hpp diff --git a/AusRegEPPTK/se/ArDomainUnrenewCommandTest.d b/AusRegEPPTK/se/ArDomainUnrenewCommandTest.d new file mode 100644 index 0000000..4969a5e --- /dev/null +++ b/AusRegEPPTK/se/ArDomainUnrenewCommandTest.d @@ -0,0 +1,11 @@ +build/ArDomainUnrenewCommandTest.o se/ArDomainUnrenewCommandTest.d: \ + se/ArDomainUnrenewCommandTest.cpp se/ArDomainUnrenewCommand.hpp \ + se/ProtocolExtensionCommand.hpp se/SendSE.hpp xml/EPPWriter.hpp \ + xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/EPPException.hpp common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/ObjectType.hpp se/Extension.hpp xml/XStr.hpp se/CLTRID.hpp \ + se/EPPDateFormatter.hpp se/XMLGregorianCalendar.hpp \ + common/IllegalStateException.hpp se/IllegalArgException.hpp \ + session/Timer.hpp common/ParameterSyntaxException.hpp common/init.hpp \ + common/Test.hpp diff --git a/AusRegEPPTK/se/ArDomainUnrenewResponse.d b/AusRegEPPTK/se/ArDomainUnrenewResponse.d new file mode 100644 index 0000000..d02744e --- /dev/null +++ b/AusRegEPPTK/se/ArDomainUnrenewResponse.d @@ -0,0 +1,10 @@ +build/ArDomainUnrenewResponse.o se/ArDomainUnrenewResponse.d: \ + se/ArDomainUnrenewResponse.cpp se/ArDomainUnrenewResponse.hpp \ + se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \ + common/EPPException.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \ + se/ObjectType.hpp se/ArDomainObjectType.hpp se/ObjectType.hpp \ + se/ArUnrenewCommandType.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/EPPDateFormatter.hpp diff --git a/AusRegEPPTK/se/ArDomainUnrenewResponseTest.d b/AusRegEPPTK/se/ArDomainUnrenewResponseTest.d new file mode 100644 index 0000000..fc3d8d3 --- /dev/null +++ b/AusRegEPPTK/se/ArDomainUnrenewResponseTest.d @@ -0,0 +1,10 @@ +build/ArDomainUnrenewResponseTest.o se/ArDomainUnrenewResponseTest.d: \ + se/ArDomainUnrenewResponseTest.cpp se/ArDomainUnrenewResponse.hpp \ + se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \ + common/EPPException.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \ + se/ObjectType.hpp xml/XMLParser.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp common/Test.hpp common/init.hpp \ + se/EPPDateFormatter.hpp diff --git a/AusRegEPPTK/se/ArExtension.d b/AusRegEPPTK/se/ArExtension.d new file mode 100644 index 0000000..a9da05d --- /dev/null +++ b/AusRegEPPTK/se/ArExtension.d @@ -0,0 +1,2 @@ +build/ArExtension.o se/ArExtension.d: se/ArExtension.cpp \ + se/ArExtension.hpp se/Extension.hpp diff --git a/AusRegEPPTK/se/ArUnrenewCommandType.d b/AusRegEPPTK/se/ArUnrenewCommandType.d new file mode 100644 index 0000000..090617b --- /dev/null +++ b/AusRegEPPTK/se/ArUnrenewCommandType.d @@ -0,0 +1,3 @@ +build/ArUnrenewCommandType.o se/ArUnrenewCommandType.d: \ + se/ArUnrenewCommandType.cpp se/ArUnrenewCommandType.hpp \ + se/CommandType.hpp common/StringUtils.hpp diff --git a/AusRegEPPTK/se/AuDomainCreateCommand.d b/AusRegEPPTK/se/AuDomainCreateCommand.d new file mode 100644 index 0000000..4809156 --- /dev/null +++ b/AusRegEPPTK/se/AuDomainCreateCommand.d @@ -0,0 +1,11 @@ +build/AuDomainCreateCommand.o se/AuDomainCreateCommand.d: \ + se/AuDomainCreateCommand.cpp se/AuDomainCreateCommand.hpp \ + common/Deprecated.hpp se/DomainCreateCommand.hpp se/CreateCommand.hpp \ + se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp \ + xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/EPPException.hpp common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/Period.hpp se/PeriodUnit.hpp xml/XMLHelper.hpp xml/XStr.hpp \ + se/AuExtension.hpp common/ErrorPkg.hpp diff --git a/AusRegEPPTK/se/AuDomainCreateCommandTest.d b/AusRegEPPTK/se/AuDomainCreateCommandTest.d new file mode 100644 index 0000000..f2dedce --- /dev/null +++ b/AusRegEPPTK/se/AuDomainCreateCommandTest.d @@ -0,0 +1,13 @@ +build/AuDomainCreateCommandTest.o se/AuDomainCreateCommandTest.d: \ + se/AuDomainCreateCommandTest.cpp se/ContactCheckCommand.hpp \ + se/CheckCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \ + xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \ + se/CommandExtension.hpp se/ObjectType.hpp se/StandardCommandType.hpp \ + se/EnumType.hpp se/IllegalArgException.hpp se/CommandType.hpp \ + common/StringUtils.hpp se/StandardObjectType.hpp \ + se/AuDomainCreateCommand.hpp common/Deprecated.hpp \ + se/DomainCreateCommand.hpp se/CreateCommand.hpp se/Period.hpp \ + se/PeriodUnit.hpp se/CLTRID.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp common/init.hpp common/Test.hpp diff --git a/AusRegEPPTK/se/AuDomainCreateCommandV1.d b/AusRegEPPTK/se/AuDomainCreateCommandV1.d new file mode 100644 index 0000000..a677d8f --- /dev/null +++ b/AusRegEPPTK/se/AuDomainCreateCommandV1.d @@ -0,0 +1,11 @@ +build/AuDomainCreateCommandV1.o se/AuDomainCreateCommandV1.d: \ + se/AuDomainCreateCommandV1.cpp se/AuDomainCreateCommandV1.hpp \ + common/Deprecated.hpp se/DomainCreateCommand.hpp se/CreateCommand.hpp \ + se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp \ + xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/EPPException.hpp common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/Period.hpp se/PeriodUnit.hpp xml/XMLHelper.hpp xml/XStr.hpp \ + se/AuExtensionV1.hpp diff --git a/AusRegEPPTK/se/AuDomainInfoResponse.d b/AusRegEPPTK/se/AuDomainInfoResponse.d new file mode 100644 index 0000000..2e5d692 --- /dev/null +++ b/AusRegEPPTK/se/AuDomainInfoResponse.d @@ -0,0 +1,10 @@ +build/AuDomainInfoResponse.o se/AuDomainInfoResponse.d: \ + se/AuDomainInfoResponse.cpp se/AuDomainInfoResponse.hpp \ + common/Deprecated.hpp se/DomainInfoResponse.hpp se/InfoResponse.hpp \ + se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \ + common/EPPException.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \ + se/ObjectType.hpp se/Status.hpp common/StringUtils.hpp \ + se/StandardObjectType.hpp se/EnumType.hpp diff --git a/AusRegEPPTK/se/AuDomainInfoResponseTest.d b/AusRegEPPTK/se/AuDomainInfoResponseTest.d new file mode 100644 index 0000000..9c8273c --- /dev/null +++ b/AusRegEPPTK/se/AuDomainInfoResponseTest.d @@ -0,0 +1,10 @@ +build/AuDomainInfoResponseTest.o se/AuDomainInfoResponseTest.d: \ + se/AuDomainInfoResponseTest.cpp se/AuDomainInfoResponse.hpp \ + common/Deprecated.hpp se/DomainInfoResponse.hpp se/InfoResponse.hpp \ + se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \ + common/EPPException.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \ + se/ObjectType.hpp se/Status.hpp common/StringUtils.hpp xml/XMLParser.hpp \ + common/Test.hpp common/init.hpp diff --git a/AusRegEPPTK/se/AuDomainInfoResponseV1.d b/AusRegEPPTK/se/AuDomainInfoResponseV1.d new file mode 100644 index 0000000..5e8b849 --- /dev/null +++ b/AusRegEPPTK/se/AuDomainInfoResponseV1.d @@ -0,0 +1,10 @@ +build/AuDomainInfoResponseV1.o se/AuDomainInfoResponseV1.d: \ + se/AuDomainInfoResponseV1.cpp se/AuDomainInfoResponseV1.hpp \ + common/Deprecated.hpp se/DomainInfoResponse.hpp se/InfoResponse.hpp \ + se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \ + common/EPPException.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \ + se/ObjectType.hpp se/Status.hpp common/StringUtils.hpp \ + se/StandardObjectType.hpp se/EnumType.hpp diff --git a/AusRegEPPTK/se/AuDomainInfoResponsev1Test.d b/AusRegEPPTK/se/AuDomainInfoResponsev1Test.d new file mode 100644 index 0000000..0233037 --- /dev/null +++ b/AusRegEPPTK/se/AuDomainInfoResponsev1Test.d @@ -0,0 +1,11 @@ +build/AuDomainInfoResponsev1Test.o se/AuDomainInfoResponsev1Test.d: \ + se/AuDomainInfoResponsev1Test.cpp se/AuDomainInfoResponseV1.hpp \ + common/Deprecated.hpp se/DomainInfoResponse.hpp se/InfoResponse.hpp \ + se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \ + common/EPPException.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \ + se/ObjectType.hpp se/Status.hpp common/StringUtils.hpp xml/XMLParser.hpp \ + se/CLTRID.hpp se/EPPDateFormatter.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp common/init.hpp common/Test.hpp diff --git a/AusRegEPPTK/se/AuDomainModifyRegistrantCommand.d b/AusRegEPPTK/se/AuDomainModifyRegistrantCommand.d new file mode 100644 index 0000000..db71588 --- /dev/null +++ b/AusRegEPPTK/se/AuDomainModifyRegistrantCommand.d @@ -0,0 +1,11 @@ +build/AuDomainModifyRegistrantCommand.o se/AuDomainModifyRegistrantCommand.d: \ + se/AuDomainModifyRegistrantCommand.cpp \ + se/AuDomainModifyRegistrantCommand.hpp common/Deprecated.hpp \ + se/DomainUpdateCommand.hpp se/UpdateCommand.hpp se/ObjectCommand.hpp \ + se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp xml/XMLWriter.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/EPPException.hpp common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \ + common/ErrorPkg.hpp se/AuExtension.hpp xml/XMLHelper.hpp xml/XStr.hpp diff --git a/AusRegEPPTK/se/AuDomainModifyRegistrantCommandTest.d b/AusRegEPPTK/se/AuDomainModifyRegistrantCommandTest.d new file mode 100644 index 0000000..a5e6f95 --- /dev/null +++ b/AusRegEPPTK/se/AuDomainModifyRegistrantCommandTest.d @@ -0,0 +1,13 @@ +build/AuDomainModifyRegistrantCommandTest.o se/AuDomainModifyRegistrantCommandTest.d: \ + se/AuDomainModifyRegistrantCommandTest.cpp se/ContactCheckCommand.hpp \ + se/CheckCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \ + xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \ + se/CommandExtension.hpp se/ObjectType.hpp se/StandardCommandType.hpp \ + se/EnumType.hpp se/IllegalArgException.hpp se/CommandType.hpp \ + common/StringUtils.hpp se/StandardObjectType.hpp \ + se/AuDomainModifyRegistrantCommand.hpp common/Deprecated.hpp \ + se/DomainUpdateCommand.hpp se/UpdateCommand.hpp se/CLTRID.hpp \ + session/Timer.hpp common/ParameterSyntaxException.hpp common/init.hpp \ + common/Test.hpp diff --git a/AusRegEPPTK/se/AuDomainObjectType.d b/AusRegEPPTK/se/AuDomainObjectType.d new file mode 100644 index 0000000..3ccaba9 --- /dev/null +++ b/AusRegEPPTK/se/AuDomainObjectType.d @@ -0,0 +1,2 @@ +build/AuDomainObjectType.o se/AuDomainObjectType.d: \ + se/AuDomainObjectType.cpp se/AuDomainObjectType.hpp se/ObjectType.hpp diff --git a/AusRegEPPTK/se/AuDomainTransferRegistrantCommand.d b/AusRegEPPTK/se/AuDomainTransferRegistrantCommand.d new file mode 100644 index 0000000..36e245f --- /dev/null +++ b/AusRegEPPTK/se/AuDomainTransferRegistrantCommand.d @@ -0,0 +1,13 @@ +build/AuDomainTransferRegistrantCommand.o se/AuDomainTransferRegistrantCommand.d: \ + se/AuDomainTransferRegistrantCommand.cpp \ + se/AuDomainTransferRegistrantCommand.hpp common/Deprecated.hpp \ + se/ProtocolExtensionCommand.hpp se/SendSE.hpp xml/EPPWriter.hpp \ + xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/EPPException.hpp common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/ObjectType.hpp se/Extension.hpp xml/XStr.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/AuExtension.hpp se/AuDomainObjectType.hpp \ + se/ObjectType.hpp se/RegistrantTransferCommandType.hpp se/Period.hpp \ + se/PeriodUnit.hpp se/EnumType.hpp common/ErrorPkg.hpp \ + se/EPPDateFormatter.hpp xml/XMLHelper.hpp diff --git a/AusRegEPPTK/se/AuDomainTransferRegistrantCommandTest.d b/AusRegEPPTK/se/AuDomainTransferRegistrantCommandTest.d new file mode 100644 index 0000000..d0d4e87 --- /dev/null +++ b/AusRegEPPTK/se/AuDomainTransferRegistrantCommandTest.d @@ -0,0 +1,12 @@ +build/AuDomainTransferRegistrantCommandTest.o se/AuDomainTransferRegistrantCommandTest.d: \ + se/AuDomainTransferRegistrantCommandTest.cpp \ + se/AuDomainTransferRegistrantCommand.hpp common/Deprecated.hpp \ + se/ProtocolExtensionCommand.hpp se/SendSE.hpp xml/EPPWriter.hpp \ + xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/EPPException.hpp common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/ObjectType.hpp se/Extension.hpp xml/XStr.hpp se/CLTRID.hpp \ + se/EPPDateFormatter.hpp se/XMLGregorianCalendar.hpp \ + common/IllegalStateException.hpp se/IllegalArgException.hpp \ + se/Period.hpp se/PeriodUnit.hpp se/EnumType.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp common/init.hpp common/Test.hpp diff --git a/AusRegEPPTK/se/AuDomainTransferRegistrantResponse.d b/AusRegEPPTK/se/AuDomainTransferRegistrantResponse.d new file mode 100644 index 0000000..0a98e0e --- /dev/null +++ b/AusRegEPPTK/se/AuDomainTransferRegistrantResponse.d @@ -0,0 +1,11 @@ +build/AuDomainTransferRegistrantResponse.o se/AuDomainTransferRegistrantResponse.d: \ + se/AuDomainTransferRegistrantResponse.cpp \ + se/AuDomainTransferRegistrantResponse.hpp common/Deprecated.hpp \ + se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \ + common/EPPException.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \ + se/ObjectType.hpp se/AuDomainObjectType.hpp se/ObjectType.hpp \ + se/RegistrantTransferCommandType.hpp se/CommandType.hpp \ + common/StringUtils.hpp se/EPPDateFormatter.hpp diff --git a/AusRegEPPTK/se/AuDomainTransferRegistrantResponseTest.d b/AusRegEPPTK/se/AuDomainTransferRegistrantResponseTest.d new file mode 100644 index 0000000..0e759b6 --- /dev/null +++ b/AusRegEPPTK/se/AuDomainTransferRegistrantResponseTest.d @@ -0,0 +1,11 @@ +build/AuDomainTransferRegistrantResponseTest.o se/AuDomainTransferRegistrantResponseTest.d: \ + se/AuDomainTransferRegistrantResponseTest.cpp \ + se/AuDomainTransferRegistrantResponse.hpp common/Deprecated.hpp \ + se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \ + common/EPPException.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \ + se/ObjectType.hpp xml/XMLParser.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp common/Test.hpp common/init.hpp \ + se/EPPDateFormatter.hpp diff --git a/AusRegEPPTK/se/AuExtension.d b/AusRegEPPTK/se/AuExtension.d new file mode 100644 index 0000000..a25d880 --- /dev/null +++ b/AusRegEPPTK/se/AuExtension.d @@ -0,0 +1,2 @@ +build/AuExtension.o se/AuExtension.d: se/AuExtension.cpp \ + se/AuExtension.hpp se/Extension.hpp diff --git a/AusRegEPPTK/se/AuExtensionV1.d b/AusRegEPPTK/se/AuExtensionV1.d new file mode 100644 index 0000000..d854d07 --- /dev/null +++ b/AusRegEPPTK/se/AuExtensionV1.d @@ -0,0 +1,2 @@ +build/AuExtensionV1.o se/AuExtensionV1.d: se/AuExtensionV1.cpp \ + se/AuExtensionV1.hpp se/Extension.hpp diff --git a/AusRegEPPTK/se/CLTRID.d b/AusRegEPPTK/se/CLTRID.d new file mode 100644 index 0000000..6675205 --- /dev/null +++ b/AusRegEPPTK/se/CLTRID.d @@ -0,0 +1,2 @@ +build/CLTRID.o se/CLTRID.d: se/CLTRID.cpp se/CLTRID.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp common/EPPException.hpp diff --git a/AusRegEPPTK/se/CheckResponse.d b/AusRegEPPTK/se/CheckResponse.d new file mode 100644 index 0000000..2f9ad96 --- /dev/null +++ b/AusRegEPPTK/se/CheckResponse.d @@ -0,0 +1,9 @@ +build/CheckResponse.o se/CheckResponse.d: se/CheckResponse.cpp \ + se/CheckResponse.hpp se/DataResponse.hpp se/Response.hpp \ + se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \ + common/IllegalStateException.hpp se/IllegalArgException.hpp \ + se/Result.hpp xml/ParsingException.hpp se/ObjectType.hpp \ + se/ItemNotFoundException.hpp se/StandardCommandType.hpp se/EnumType.hpp \ + se/CommandType.hpp common/StringUtils.hpp diff --git a/AusRegEPPTK/se/Command.d b/AusRegEPPTK/se/Command.d new file mode 100644 index 0000000..e2a75d1 --- /dev/null +++ b/AusRegEPPTK/se/Command.d @@ -0,0 +1,7 @@ +build/Command.o se/Command.d: se/Command.cpp se/CLTRID.hpp se/Command.hpp \ + se/SendSE.hpp xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \ + se/CommandExtension.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/IllegalArgException.hpp xml/XMLHelper.hpp xml/XStr.hpp \ + xml/XMLParser.hpp common/ErrorPkg.hpp diff --git a/AusRegEPPTK/se/ContactCheckCommandTest.d b/AusRegEPPTK/se/ContactCheckCommandTest.d new file mode 100644 index 0000000..c264394 --- /dev/null +++ b/AusRegEPPTK/se/ContactCheckCommandTest.d @@ -0,0 +1,11 @@ +build/ContactCheckCommandTest.o se/ContactCheckCommandTest.d: \ + se/ContactCheckCommandTest.cpp se/ContactCheckCommand.hpp \ + se/CheckCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \ + xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \ + se/CommandExtension.hpp se/ObjectType.hpp se/StandardCommandType.hpp \ + se/EnumType.hpp se/IllegalArgException.hpp se/CommandType.hpp \ + common/StringUtils.hpp se/StandardObjectType.hpp se/CLTRID.hpp \ + session/Timer.hpp common/ParameterSyntaxException.hpp common/Test.hpp \ + common/init.hpp diff --git a/AusRegEPPTK/se/ContactCheckResponse.d b/AusRegEPPTK/se/ContactCheckResponse.d new file mode 100644 index 0000000..100c0e8 --- /dev/null +++ b/AusRegEPPTK/se/ContactCheckResponse.d @@ -0,0 +1,9 @@ +build/ContactCheckResponse.o se/ContactCheckResponse.d: \ + se/ContactCheckResponse.cpp se/ContactCheckResponse.hpp \ + se/CheckResponse.hpp se/DataResponse.hpp se/Response.hpp \ + se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \ + common/IllegalStateException.hpp se/IllegalArgException.hpp \ + se/Result.hpp xml/ParsingException.hpp se/ObjectType.hpp \ + se/StandardObjectType.hpp se/EnumType.hpp common/StringUtils.hpp diff --git a/AusRegEPPTK/se/ContactCheckResponseTest.d b/AusRegEPPTK/se/ContactCheckResponseTest.d new file mode 100644 index 0000000..e9041b0 --- /dev/null +++ b/AusRegEPPTK/se/ContactCheckResponseTest.d @@ -0,0 +1,10 @@ +build/ContactCheckResponseTest.o se/ContactCheckResponseTest.d: \ + se/ContactCheckResponseTest.cpp se/ContactCheckResponse.hpp \ + se/CheckResponse.hpp se/DataResponse.hpp se/Response.hpp \ + se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \ + common/IllegalStateException.hpp se/IllegalArgException.hpp \ + se/Result.hpp xml/ParsingException.hpp se/ObjectType.hpp \ + xml/XMLParser.hpp session/Timer.hpp common/ParameterSyntaxException.hpp \ + common/Test.hpp common/init.hpp diff --git a/AusRegEPPTK/se/ContactCreateCommand.d b/AusRegEPPTK/se/ContactCreateCommand.d new file mode 100644 index 0000000..eb94b2e --- /dev/null +++ b/AusRegEPPTK/se/ContactCreateCommand.d @@ -0,0 +1,12 @@ +build/ContactCreateCommand.o se/ContactCreateCommand.d: \ + se/ContactCreateCommand.cpp se/ContactCreateCommand.hpp \ + se/CreateCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \ + xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \ + se/CommandExtension.hpp se/ObjectType.hpp se/StandardCommandType.hpp \ + se/EnumType.hpp se/IllegalArgException.hpp se/CommandType.hpp \ + common/StringUtils.hpp se/StandardObjectType.hpp se/IntPostalInfo.hpp \ + se/PostalInfo.hpp se/PostalInfoType.hpp se/Appendable.hpp \ + xml/XMLHelper.hpp xml/XStr.hpp se/LocalPostalInfo.hpp se/Disclose.hpp \ + common/ErrorPkg.hpp diff --git a/AusRegEPPTK/se/ContactCreateResponse.d b/AusRegEPPTK/se/ContactCreateResponse.d new file mode 100644 index 0000000..f8a87e5 --- /dev/null +++ b/AusRegEPPTK/se/ContactCreateResponse.d @@ -0,0 +1,9 @@ +build/ContactCreateResponse.o se/ContactCreateResponse.d: \ + se/ContactCreateResponse.cpp se/ContactCreateResponse.hpp \ + se/CreateResponse.hpp se/DataResponse.hpp se/Response.hpp \ + se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \ + common/IllegalStateException.hpp se/IllegalArgException.hpp \ + se/Result.hpp xml/ParsingException.hpp se/ObjectType.hpp \ + se/StandardObjectType.hpp se/EnumType.hpp common/StringUtils.hpp diff --git a/AusRegEPPTK/se/ContactDeleteCommandTest.d b/AusRegEPPTK/se/ContactDeleteCommandTest.d new file mode 100644 index 0000000..b88f34d --- /dev/null +++ b/AusRegEPPTK/se/ContactDeleteCommandTest.d @@ -0,0 +1,11 @@ +build/ContactDeleteCommandTest.o se/ContactDeleteCommandTest.d: \ + se/ContactDeleteCommandTest.cpp common/init.hpp common/Test.hpp \ + common/EPPException.hpp se/CLTRID.hpp se/ContactDeleteCommand.hpp \ + se/DeleteCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \ + xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/ObjectType.hpp se/StandardObjectType.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp se/StandardCommandType.hpp se/CommandType.hpp \ + common/StringUtils.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp diff --git a/AusRegEPPTK/se/ContactInfoCommandTest.d b/AusRegEPPTK/se/ContactInfoCommandTest.d new file mode 100644 index 0000000..701910a --- /dev/null +++ b/AusRegEPPTK/se/ContactInfoCommandTest.d @@ -0,0 +1,11 @@ +build/ContactInfoCommandTest.o se/ContactInfoCommandTest.d: \ + se/ContactInfoCommandTest.cpp common/init.hpp common/Test.hpp \ + common/EPPException.hpp se/CLTRID.hpp se/ContactInfoCommand.hpp \ + se/InfoCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \ + xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \ + xml/XStr.hpp se/StandardObjectType.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp diff --git a/AusRegEPPTK/se/ContactInfoResponse.d b/AusRegEPPTK/se/ContactInfoResponse.d new file mode 100644 index 0000000..686d03c --- /dev/null +++ b/AusRegEPPTK/se/ContactInfoResponse.d @@ -0,0 +1,11 @@ +build/ContactInfoResponse.o se/ContactInfoResponse.d: \ + se/ContactInfoResponse.cpp se/ContactInfoResponse.hpp \ + se/InfoResponse.hpp se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp \ + xml/XMLDocument.hpp common/EPPException.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \ + se/ObjectType.hpp se/Status.hpp common/StringUtils.hpp \ + se/StandardObjectType.hpp se/EnumType.hpp se/IntPostalInfo.hpp \ + se/PostalInfo.hpp se/PostalInfoType.hpp se/Appendable.hpp \ + se/LocalPostalInfo.hpp se/DiscloseItem.hpp diff --git a/AusRegEPPTK/se/ContactInfoResponseTest.d b/AusRegEPPTK/se/ContactInfoResponseTest.d new file mode 100644 index 0000000..d522192 --- /dev/null +++ b/AusRegEPPTK/se/ContactInfoResponseTest.d @@ -0,0 +1,12 @@ +build/ContactInfoResponseTest.o se/ContactInfoResponseTest.d: \ + se/ContactInfoResponseTest.cpp se/ContactInfoResponse.hpp \ + se/InfoResponse.hpp se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp \ + xml/XMLDocument.hpp common/EPPException.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \ + se/ObjectType.hpp se/Status.hpp common/StringUtils.hpp \ + se/IntPostalInfo.hpp se/PostalInfo.hpp se/PostalInfoType.hpp \ + se/EnumType.hpp se/Appendable.hpp se/CLTRID.hpp se/EPPDateFormatter.hpp \ + xml/XMLParser.hpp session/Timer.hpp common/ParameterSyntaxException.hpp \ + common/init.hpp common/Test.hpp diff --git a/AusRegEPPTK/se/ContactNotificationResponse.d b/AusRegEPPTK/se/ContactNotificationResponse.d new file mode 100644 index 0000000..b6c1c57 --- /dev/null +++ b/AusRegEPPTK/se/ContactNotificationResponse.d @@ -0,0 +1,9 @@ +build/ContactNotificationResponse.o se/ContactNotificationResponse.d: \ + se/ContactNotificationResponse.cpp se/ContactNotificationResponse.hpp \ + se/NotificationResponse.hpp se/DataResponse.hpp se/Response.hpp \ + se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \ + common/IllegalStateException.hpp se/IllegalArgException.hpp \ + se/Result.hpp xml/ParsingException.hpp se/ObjectType.hpp \ + se/StandardObjectType.hpp se/EnumType.hpp common/StringUtils.hpp diff --git a/AusRegEPPTK/se/ContactTransferRequestCommandTest.d b/AusRegEPPTK/se/ContactTransferRequestCommandTest.d new file mode 100644 index 0000000..3f2ced9 --- /dev/null +++ b/AusRegEPPTK/se/ContactTransferRequestCommandTest.d @@ -0,0 +1,13 @@ +build/ContactTransferRequestCommandTest.o se/ContactTransferRequestCommandTest.d: \ + se/ContactTransferRequestCommandTest.cpp \ + se/ContactTransferRequestCommand.hpp se/ContactTransferCommand.hpp \ + se/TransferCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \ + xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \ + se/CommandExtension.hpp se/ObjectType.hpp se/Period.hpp \ + se/PeriodUnit.hpp se/EnumType.hpp se/IllegalArgException.hpp \ + se/TransferOp.hpp se/StandardObjectType.hpp se/CLTRID.hpp \ + se/EPPDateFormatter.hpp se/XMLGregorianCalendar.hpp \ + common/IllegalStateException.hpp xml/XMLParser.hpp common/init.hpp \ + session/Timer.hpp common/ParameterSyntaxException.hpp common/Test.hpp diff --git a/AusRegEPPTK/se/ContactTransferResponse.d b/AusRegEPPTK/se/ContactTransferResponse.d new file mode 100644 index 0000000..c2d7b8c --- /dev/null +++ b/AusRegEPPTK/se/ContactTransferResponse.d @@ -0,0 +1,9 @@ +build/ContactTransferResponse.o se/ContactTransferResponse.d: \ + se/ContactTransferResponse.cpp se/ContactTransferResponse.hpp \ + se/StandardObjectType.hpp se/EnumType.hpp se/IllegalArgException.hpp \ + common/EPPException.hpp se/ObjectType.hpp se/TransferResponse.hpp \ + se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \ + common/IllegalStateException.hpp se/Result.hpp xml/ParsingException.hpp \ + common/StringUtils.hpp diff --git a/AusRegEPPTK/se/ContactUpdateCommand.d b/AusRegEPPTK/se/ContactUpdateCommand.d new file mode 100644 index 0000000..da24155 --- /dev/null +++ b/AusRegEPPTK/se/ContactUpdateCommand.d @@ -0,0 +1,12 @@ +build/ContactUpdateCommand.o se/ContactUpdateCommand.d: \ + se/ContactUpdateCommand.cpp se/ContactUpdateCommand.hpp \ + se/UpdateCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \ + xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \ + se/CommandExtension.hpp se/ObjectType.hpp se/StandardCommandType.hpp \ + se/EnumType.hpp se/IllegalArgException.hpp se/CommandType.hpp \ + common/StringUtils.hpp se/StandardObjectType.hpp xml/XMLHelper.hpp \ + xml/XStr.hpp se/Status.hpp se/IntPostalInfo.hpp se/PostalInfo.hpp \ + se/PostalInfoType.hpp se/Appendable.hpp se/LocalPostalInfo.hpp \ + se/Disclose.hpp diff --git a/AusRegEPPTK/se/CreateResponse.d b/AusRegEPPTK/se/CreateResponse.d new file mode 100644 index 0000000..041ff91 --- /dev/null +++ b/AusRegEPPTK/se/CreateResponse.d @@ -0,0 +1,9 @@ +build/CreateResponse.o se/CreateResponse.d: se/CreateResponse.cpp \ + se/CreateResponse.hpp se/DataResponse.hpp se/Response.hpp \ + se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \ + common/IllegalStateException.hpp se/IllegalArgException.hpp \ + se/Result.hpp xml/ParsingException.hpp se/ObjectType.hpp \ + se/StandardCommandType.hpp se/EnumType.hpp se/CommandType.hpp \ + common/StringUtils.hpp se/EPPDateFormatter.hpp diff --git a/AusRegEPPTK/se/DataResponse.d b/AusRegEPPTK/se/DataResponse.d new file mode 100644 index 0000000..b299fd4 --- /dev/null +++ b/AusRegEPPTK/se/DataResponse.d @@ -0,0 +1,7 @@ +build/DataResponse.o se/DataResponse.d: se/DataResponse.cpp \ + se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \ + common/EPPException.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \ + se/ObjectType.hpp se/CommandType.hpp common/StringUtils.hpp diff --git a/AusRegEPPTK/se/Disclose.d b/AusRegEPPTK/se/Disclose.d new file mode 100644 index 0000000..9a2f71c --- /dev/null +++ b/AusRegEPPTK/se/Disclose.d @@ -0,0 +1,4 @@ +build/Disclose.o se/Disclose.d: se/Disclose.cpp se/Disclose.hpp \ + se/Appendable.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp diff --git a/AusRegEPPTK/se/DomainAddRem.d b/AusRegEPPTK/se/DomainAddRem.d new file mode 100644 index 0000000..354fe24 --- /dev/null +++ b/AusRegEPPTK/se/DomainAddRem.d @@ -0,0 +1,6 @@ +build/DomainAddRem.o se/DomainAddRem.d: se/DomainAddRem.cpp \ + se/DomainAddRem.hpp se/Appendable.hpp se/Status.hpp \ + common/StringUtils.hpp se/AddRemType.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp common/EPPException.hpp xml/XMLHelper.hpp \ + xml/XStr.hpp xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp diff --git a/AusRegEPPTK/se/DomainCheckCommandTest.d b/AusRegEPPTK/se/DomainCheckCommandTest.d new file mode 100644 index 0000000..97988e2 --- /dev/null +++ b/AusRegEPPTK/se/DomainCheckCommandTest.d @@ -0,0 +1,11 @@ +build/DomainCheckCommandTest.o se/DomainCheckCommandTest.d: \ + se/DomainCheckCommandTest.cpp common/init.hpp common/Test.hpp \ + common/EPPException.hpp se/CLTRID.hpp se/DomainCheckCommand.hpp \ + se/CheckCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \ + xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/StandardObjectType.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp diff --git a/AusRegEPPTK/se/DomainCheckResponse.d b/AusRegEPPTK/se/DomainCheckResponse.d new file mode 100644 index 0000000..0edc651 --- /dev/null +++ b/AusRegEPPTK/se/DomainCheckResponse.d @@ -0,0 +1,9 @@ +build/DomainCheckResponse.o se/DomainCheckResponse.d: \ + se/DomainCheckResponse.cpp se/DomainCheckResponse.hpp \ + se/CheckResponse.hpp se/DataResponse.hpp se/Response.hpp \ + se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \ + common/IllegalStateException.hpp se/IllegalArgException.hpp \ + se/Result.hpp xml/ParsingException.hpp se/ObjectType.hpp \ + common/StringUtils.hpp se/StandardObjectType.hpp se/EnumType.hpp diff --git a/AusRegEPPTK/se/DomainCheckResponseTest.d b/AusRegEPPTK/se/DomainCheckResponseTest.d new file mode 100644 index 0000000..69b2bfb --- /dev/null +++ b/AusRegEPPTK/se/DomainCheckResponseTest.d @@ -0,0 +1,9 @@ +build/DomainCheckResponseTest.o se/DomainCheckResponseTest.d: \ + se/DomainCheckResponseTest.cpp se/DomainCheckResponse.hpp \ + se/CheckResponse.hpp se/DataResponse.hpp se/Response.hpp \ + se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \ + common/IllegalStateException.hpp se/IllegalArgException.hpp \ + se/Result.hpp xml/ParsingException.hpp se/ObjectType.hpp \ + xml/XMLParser.hpp common/init.hpp common/Test.hpp diff --git a/AusRegEPPTK/se/DomainCreateCommand.d b/AusRegEPPTK/se/DomainCreateCommand.d new file mode 100644 index 0000000..9e3046c --- /dev/null +++ b/AusRegEPPTK/se/DomainCreateCommand.d @@ -0,0 +1,10 @@ +build/DomainCreateCommand.o se/DomainCreateCommand.d: \ + se/DomainCreateCommand.cpp se/DomainCreateCommand.hpp \ + se/CreateCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \ + xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \ + se/CommandExtension.hpp se/ObjectType.hpp se/StandardCommandType.hpp \ + se/EnumType.hpp se/IllegalArgException.hpp se/CommandType.hpp \ + common/StringUtils.hpp se/Period.hpp se/PeriodUnit.hpp \ + se/StandardObjectType.hpp xml/XMLHelper.hpp xml/XStr.hpp diff --git a/AusRegEPPTK/se/DomainCreateResponse.d b/AusRegEPPTK/se/DomainCreateResponse.d new file mode 100644 index 0000000..5c8c2d0 --- /dev/null +++ b/AusRegEPPTK/se/DomainCreateResponse.d @@ -0,0 +1,10 @@ +build/DomainCreateResponse.o se/DomainCreateResponse.d: \ + se/DomainCreateResponse.cpp se/DomainCreateResponse.hpp \ + se/CreateResponse.hpp se/DataResponse.hpp se/Response.hpp \ + se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \ + common/IllegalStateException.hpp se/IllegalArgException.hpp \ + se/Result.hpp xml/ParsingException.hpp se/ObjectType.hpp \ + se/StandardObjectType.hpp se/EnumType.hpp se/EPPDateFormatter.hpp \ + common/StringUtils.hpp diff --git a/AusRegEPPTK/se/DomainDeleteCommandTest.d b/AusRegEPPTK/se/DomainDeleteCommandTest.d new file mode 100644 index 0000000..31b63fe --- /dev/null +++ b/AusRegEPPTK/se/DomainDeleteCommandTest.d @@ -0,0 +1,11 @@ +build/DomainDeleteCommandTest.o se/DomainDeleteCommandTest.d: \ + se/DomainDeleteCommandTest.cpp common/init.hpp common/Test.hpp \ + common/EPPException.hpp se/CLTRID.hpp se/DomainDeleteCommand.hpp \ + se/DeleteCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \ + xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/ObjectType.hpp se/StandardObjectType.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp se/StandardCommandType.hpp se/CommandType.hpp \ + common/StringUtils.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp diff --git a/AusRegEPPTK/se/DomainInfoCommandTest.d b/AusRegEPPTK/se/DomainInfoCommandTest.d new file mode 100644 index 0000000..c5316cc --- /dev/null +++ b/AusRegEPPTK/se/DomainInfoCommandTest.d @@ -0,0 +1,11 @@ +build/DomainInfoCommandTest.o se/DomainInfoCommandTest.d: \ + se/DomainInfoCommandTest.cpp common/init.hpp common/Test.hpp \ + common/EPPException.hpp se/CLTRID.hpp se/DomainInfoCommand.hpp \ + se/InfoCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \ + xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \ + xml/XStr.hpp se/StandardObjectType.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp diff --git a/AusRegEPPTK/se/DomainInfoKVResponseExtension.d b/AusRegEPPTK/se/DomainInfoKVResponseExtension.d new file mode 100644 index 0000000..7ecdf22 --- /dev/null +++ b/AusRegEPPTK/se/DomainInfoKVResponseExtension.d @@ -0,0 +1,8 @@ +build/DomainInfoKVResponseExtension.o se/DomainInfoKVResponseExtension.d: \ + se/DomainInfoKVResponseExtension.cpp xml/XMLDocument.hpp \ + common/EPPException.hpp se/Response.hpp se/ReceiveSE.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \ + common/IllegalStateException.hpp se/IllegalArgException.hpp \ + se/Result.hpp xml/ParsingException.hpp se/ResponseExtension.hpp \ + se/DomainInfoKVResponseExtension.hpp se/KVDefs.hpp diff --git a/AusRegEPPTK/se/DomainInfoKVResponseExtensionTest.d b/AusRegEPPTK/se/DomainInfoKVResponseExtensionTest.d new file mode 100644 index 0000000..54c4148 --- /dev/null +++ b/AusRegEPPTK/se/DomainInfoKVResponseExtensionTest.d @@ -0,0 +1,13 @@ +build/DomainInfoKVResponseExtensionTest.o se/DomainInfoKVResponseExtensionTest.d: \ + se/DomainInfoKVResponseExtensionTest.cpp xml/XMLParser.hpp \ + xml/ParsingException.hpp common/EPPException.hpp common/init.hpp \ + common/Test.hpp session/Timer.hpp common/ParameterSyntaxException.hpp \ + se/DomainKVCommandExtension.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/ConfigurationError.hpp \ + se/CommandExtension.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/KVDefs.hpp se/DomainInfoResponse.hpp se/InfoResponse.hpp \ + se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp se/ObjectType.hpp se/Status.hpp \ + se/DomainInfoKVResponseExtension.hpp se/ResponseExtension.hpp \ + se/CLTRID.hpp diff --git a/AusRegEPPTK/se/DomainInfoResponse.d b/AusRegEPPTK/se/DomainInfoResponse.d new file mode 100644 index 0000000..b17be7f --- /dev/null +++ b/AusRegEPPTK/se/DomainInfoResponse.d @@ -0,0 +1,9 @@ +build/DomainInfoResponse.o se/DomainInfoResponse.d: \ + se/DomainInfoResponse.cpp se/DomainInfoResponse.hpp se/InfoResponse.hpp \ + se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \ + common/EPPException.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \ + se/ObjectType.hpp se/Status.hpp common/StringUtils.hpp \ + se/StandardObjectType.hpp se/EnumType.hpp se/EPPDateFormatter.hpp diff --git a/AusRegEPPTK/se/DomainKVCommandExtension.d b/AusRegEPPTK/se/DomainKVCommandExtension.d new file mode 100644 index 0000000..f85d412 --- /dev/null +++ b/AusRegEPPTK/se/DomainKVCommandExtension.d @@ -0,0 +1,8 @@ +build/DomainKVCommandExtension.o se/DomainKVCommandExtension.d: \ + se/DomainKVCommandExtension.cpp se/DomainKVCommandExtension.hpp \ + xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/EPPException.hpp common/ConfigurationError.hpp \ + se/CommandExtension.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/KVDefs.hpp se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp \ + xml/ParsingException.hpp se/Extension.hpp se/KVExtension.hpp \ + xml/XMLHelper.hpp xml/XStr.hpp diff --git a/AusRegEPPTK/se/DomainKVCommandExtensionTest.d b/AusRegEPPTK/se/DomainKVCommandExtensionTest.d new file mode 100644 index 0000000..76961b2 --- /dev/null +++ b/AusRegEPPTK/se/DomainKVCommandExtensionTest.d @@ -0,0 +1,13 @@ +build/DomainKVCommandExtensionTest.o se/DomainKVCommandExtensionTest.d: \ + se/DomainKVCommandExtensionTest.cpp xml/XMLParser.hpp \ + xml/ParsingException.hpp common/EPPException.hpp common/init.hpp \ + common/Test.hpp session/Timer.hpp common/ParameterSyntaxException.hpp \ + se/DomainKVCommandExtension.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/ConfigurationError.hpp \ + se/CommandExtension.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/KVDefs.hpp se/DomainCreateCommand.hpp se/CreateCommand.hpp \ + se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp \ + se/Extension.hpp se/ObjectType.hpp se/StandardCommandType.hpp \ + se/EnumType.hpp se/IllegalArgException.hpp se/Period.hpp \ + se/PeriodUnit.hpp se/DomainUpdateCommand.hpp se/UpdateCommand.hpp \ + se/CLTRID.hpp diff --git a/AusRegEPPTK/se/DomainNotificationResponse.d b/AusRegEPPTK/se/DomainNotificationResponse.d new file mode 100644 index 0000000..1abbd49 --- /dev/null +++ b/AusRegEPPTK/se/DomainNotificationResponse.d @@ -0,0 +1,9 @@ +build/DomainNotificationResponse.o se/DomainNotificationResponse.d: \ + se/DomainNotificationResponse.cpp se/DomainNotificationResponse.hpp \ + se/NotificationResponse.hpp se/DataResponse.hpp se/Response.hpp \ + se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \ + common/IllegalStateException.hpp se/IllegalArgException.hpp \ + se/Result.hpp xml/ParsingException.hpp se/ObjectType.hpp \ + se/StandardObjectType.hpp se/EnumType.hpp common/StringUtils.hpp diff --git a/AusRegEPPTK/se/DomainRegistrantTransferCommand.d b/AusRegEPPTK/se/DomainRegistrantTransferCommand.d new file mode 100644 index 0000000..d967e50 --- /dev/null +++ b/AusRegEPPTK/se/DomainRegistrantTransferCommand.d @@ -0,0 +1,12 @@ +build/DomainRegistrantTransferCommand.o se/DomainRegistrantTransferCommand.d: \ + se/DomainRegistrantTransferCommand.cpp se/Period.hpp se/PeriodUnit.hpp \ + se/EnumType.hpp se/IllegalArgException.hpp common/EPPException.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/DomainRegistrantTransferCommand.hpp se/Command.hpp se/SendSE.hpp \ + xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/KVDefs.hpp se/StandardCommandType.hpp se/CommandType.hpp \ + common/StringUtils.hpp se/RegistrantTransferCommandType.hpp \ + se/EPPDateFormatter.hpp se/KVExtension.hpp se/RegistrantObjectType.hpp \ + se/ObjectType.hpp se/CLTRID.hpp xml/XMLHelper.hpp xml/XStr.hpp diff --git a/AusRegEPPTK/se/DomainRegistrantTransferCommandTest.d b/AusRegEPPTK/se/DomainRegistrantTransferCommandTest.d new file mode 100644 index 0000000..0e525f4 --- /dev/null +++ b/AusRegEPPTK/se/DomainRegistrantTransferCommandTest.d @@ -0,0 +1,11 @@ +build/DomainRegistrantTransferCommandTest.o se/DomainRegistrantTransferCommandTest.d: \ + se/DomainRegistrantTransferCommandTest.cpp \ + se/DomainRegistrantTransferCommand.hpp se/Command.hpp se/SendSE.hpp \ + xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \ + se/CommandExtension.hpp se/KVDefs.hpp se/CLTRID.hpp \ + se/EPPDateFormatter.hpp se/XMLGregorianCalendar.hpp \ + common/IllegalStateException.hpp se/IllegalArgException.hpp \ + se/Period.hpp se/PeriodUnit.hpp se/EnumType.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp common/init.hpp common/Test.hpp diff --git a/AusRegEPPTK/se/DomainRegistrantTransferResponse.d b/AusRegEPPTK/se/DomainRegistrantTransferResponse.d new file mode 100644 index 0000000..393c20c --- /dev/null +++ b/AusRegEPPTK/se/DomainRegistrantTransferResponse.d @@ -0,0 +1,11 @@ +build/DomainRegistrantTransferResponse.o se/DomainRegistrantTransferResponse.d: \ + se/DomainRegistrantTransferResponse.cpp \ + se/DomainRegistrantTransferResponse.hpp se/DataResponse.hpp \ + se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \ + common/EPPException.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \ + se/ObjectType.hpp se/RegistrantObjectType.hpp se/ObjectType.hpp \ + se/RegistrantTransferCommandType.hpp se/CommandType.hpp \ + common/StringUtils.hpp se/EPPDateFormatter.hpp diff --git a/AusRegEPPTK/se/DomainRegistrantTransferResponseTest.d b/AusRegEPPTK/se/DomainRegistrantTransferResponseTest.d new file mode 100644 index 0000000..e0ca60e --- /dev/null +++ b/AusRegEPPTK/se/DomainRegistrantTransferResponseTest.d @@ -0,0 +1,11 @@ +build/DomainRegistrantTransferResponseTest.o se/DomainRegistrantTransferResponseTest.d: \ + se/DomainRegistrantTransferResponseTest.cpp \ + se/DomainRegistrantTransferResponse.hpp se/DataResponse.hpp \ + se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \ + common/EPPException.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \ + se/ObjectType.hpp xml/XMLParser.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp common/Test.hpp common/init.hpp \ + se/EPPDateFormatter.hpp diff --git a/AusRegEPPTK/se/DomainRenewCommand.d b/AusRegEPPTK/se/DomainRenewCommand.d new file mode 100644 index 0000000..ad29245 --- /dev/null +++ b/AusRegEPPTK/se/DomainRenewCommand.d @@ -0,0 +1,12 @@ +build/DomainRenewCommand.o se/DomainRenewCommand.d: \ + se/DomainRenewCommand.cpp se/DomainRenewCommand.hpp se/ObjectCommand.hpp \ + se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp xml/XMLWriter.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/EPPException.hpp common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/ObjectType.hpp se/XMLGregorianCalendar.hpp \ + common/IllegalStateException.hpp se/IllegalArgException.hpp \ + se/Period.hpp se/PeriodUnit.hpp se/EnumType.hpp \ + se/StandardCommandType.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/StandardObjectType.hpp xml/XMLHelper.hpp xml/XStr.hpp \ + se/EPPDateFormatter.hpp diff --git a/AusRegEPPTK/se/DomainRenewResponse.d b/AusRegEPPTK/se/DomainRenewResponse.d new file mode 100644 index 0000000..1b6564f --- /dev/null +++ b/AusRegEPPTK/se/DomainRenewResponse.d @@ -0,0 +1,10 @@ +build/DomainRenewResponse.o se/DomainRenewResponse.d: \ + se/DomainRenewResponse.cpp se/DomainRenewResponse.hpp \ + se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \ + common/EPPException.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \ + se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \ + se/CommandType.hpp common/StringUtils.hpp se/StandardObjectType.hpp \ + se/EPPDateFormatter.hpp diff --git a/AusRegEPPTK/se/DomainTransferQueryCommandTest.d b/AusRegEPPTK/se/DomainTransferQueryCommandTest.d new file mode 100644 index 0000000..a7cee64 --- /dev/null +++ b/AusRegEPPTK/se/DomainTransferQueryCommandTest.d @@ -0,0 +1,11 @@ +build/DomainTransferQueryCommandTest.o se/DomainTransferQueryCommandTest.d: \ + se/DomainTransferQueryCommandTest.cpp common/init.hpp common/Test.hpp \ + common/EPPException.hpp se/CLTRID.hpp se/DomainTransferQueryCommand.hpp \ + se/DomainTransferCommand.hpp se/TransferCommand.hpp se/ObjectCommand.hpp \ + se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp xml/XMLWriter.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \ + se/CommandExtension.hpp se/ObjectType.hpp se/Period.hpp \ + se/PeriodUnit.hpp se/EnumType.hpp se/IllegalArgException.hpp \ + se/TransferOp.hpp se/StandardObjectType.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp diff --git a/AusRegEPPTK/se/DomainTransferResponse.d b/AusRegEPPTK/se/DomainTransferResponse.d new file mode 100644 index 0000000..2c2dea2 --- /dev/null +++ b/AusRegEPPTK/se/DomainTransferResponse.d @@ -0,0 +1,10 @@ +build/DomainTransferResponse.o se/DomainTransferResponse.d: \ + se/DomainTransferResponse.cpp se/DomainTransferResponse.hpp \ + se/TransferResponse.hpp se/DataResponse.hpp se/Response.hpp \ + se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \ + common/IllegalStateException.hpp se/IllegalArgException.hpp \ + se/Result.hpp xml/ParsingException.hpp se/ObjectType.hpp \ + se/StandardObjectType.hpp se/EnumType.hpp se/EPPDateFormatter.hpp \ + common/StringUtils.hpp diff --git a/AusRegEPPTK/se/DomainUpdateCommand.d b/AusRegEPPTK/se/DomainUpdateCommand.d new file mode 100644 index 0000000..a216f63 --- /dev/null +++ b/AusRegEPPTK/se/DomainUpdateCommand.d @@ -0,0 +1,11 @@ +build/DomainUpdateCommand.o se/DomainUpdateCommand.d: \ + se/DomainUpdateCommand.cpp se/DomainUpdateCommand.hpp \ + se/UpdateCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \ + xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \ + se/CommandExtension.hpp se/ObjectType.hpp se/StandardCommandType.hpp \ + se/EnumType.hpp se/IllegalArgException.hpp se/CommandType.hpp \ + common/StringUtils.hpp se/DomainAdd.hpp se/DomainAddRem.hpp \ + se/Appendable.hpp se/Status.hpp se/AddRemType.hpp se/DomainRem.hpp \ + se/StandardObjectType.hpp xml/XMLHelper.hpp xml/XStr.hpp diff --git a/AusRegEPPTK/se/DomainUpdateCommandTest.d b/AusRegEPPTK/se/DomainUpdateCommandTest.d new file mode 100644 index 0000000..b106612 --- /dev/null +++ b/AusRegEPPTK/se/DomainUpdateCommandTest.d @@ -0,0 +1,14 @@ +build/DomainUpdateCommandTest.o se/DomainUpdateCommandTest.d: \ + se/DomainUpdateCommandTest.cpp se/DomainUpdateCommand.hpp \ + se/UpdateCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \ + xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \ + se/CommandExtension.hpp se/ObjectType.hpp se/StandardCommandType.hpp \ + se/EnumType.hpp se/IllegalArgException.hpp se/CommandType.hpp \ + common/StringUtils.hpp se/DomainUpdateSyncCommandExtension.hpp \ + common/ErrorPkg.hpp se/XMLGregorianCalendar.hpp \ + common/IllegalStateException.hpp se/EPPDateFormatter.hpp se/CLTRID.hpp \ + se/DomainAdd.hpp se/DomainAddRem.hpp se/Appendable.hpp se/Status.hpp \ + se/AddRemType.hpp se/DomainRem.hpp xml/XMLParser.hpp common/init.hpp \ + session/Timer.hpp common/ParameterSyntaxException.hpp common/Test.hpp diff --git a/AusRegEPPTK/se/DomainUpdateSyncCommandExtension.d b/AusRegEPPTK/se/DomainUpdateSyncCommandExtension.d new file mode 100644 index 0000000..e359784 --- /dev/null +++ b/AusRegEPPTK/se/DomainUpdateSyncCommandExtension.d @@ -0,0 +1,10 @@ +build/DomainUpdateSyncCommandExtension.o se/DomainUpdateSyncCommandExtension.d: \ + se/DomainUpdateSyncCommandExtension.cpp \ + se/DomainUpdateSyncCommandExtension.hpp common/ErrorPkg.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp common/Logger.hpp se/Command.hpp \ + se/SendSE.hpp xml/EPPWriter.hpp xml/XMLWriter.hpp \ + xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/EPPDateFormatter.hpp se/SyncExtension.hpp \ + xml/XMLHelper.hpp xml/XStr.hpp diff --git a/AusRegEPPTK/se/E164Extension.d b/AusRegEPPTK/se/E164Extension.d new file mode 100644 index 0000000..e1d76c5 --- /dev/null +++ b/AusRegEPPTK/se/E164Extension.d @@ -0,0 +1,2 @@ +build/E164Extension.o se/E164Extension.d: se/E164Extension.cpp \ + se/E164Extension.hpp se/Extension.hpp diff --git a/AusRegEPPTK/se/EPPDateFormatter.d b/AusRegEPPTK/se/EPPDateFormatter.d new file mode 100644 index 0000000..e8973f8 --- /dev/null +++ b/AusRegEPPTK/se/EPPDateFormatter.d @@ -0,0 +1,4 @@ +build/EPPDateFormatter.o se/EPPDateFormatter.d: se/EPPDateFormatter.cpp \ + se/EPPDateFormatter.hpp se/XMLGregorianCalendar.hpp \ + common/IllegalStateException.hpp common/EPPException.hpp \ + se/IllegalArgException.hpp diff --git a/AusRegEPPTK/se/EPPDateFormatterTest.d b/AusRegEPPTK/se/EPPDateFormatterTest.d new file mode 100644 index 0000000..6e05242 --- /dev/null +++ b/AusRegEPPTK/se/EPPDateFormatterTest.d @@ -0,0 +1,4 @@ +build/EPPDateFormatterTest.o se/EPPDateFormatterTest.d: \ + se/EPPDateFormatterTest.cpp se/EPPDateFormatter.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + common/EPPException.hpp se/IllegalArgException.hpp common/Test.hpp diff --git a/AusRegEPPTK/se/EnumDomainCreateCommand.d b/AusRegEPPTK/se/EnumDomainCreateCommand.d new file mode 100644 index 0000000..26e30c2 --- /dev/null +++ b/AusRegEPPTK/se/EnumDomainCreateCommand.d @@ -0,0 +1,11 @@ +build/EnumDomainCreateCommand.o se/EnumDomainCreateCommand.d: \ + se/EnumDomainCreateCommand.cpp se/EnumDomainCreateCommand.hpp \ + se/DomainCreateCommand.hpp se/CreateCommand.hpp se/ObjectCommand.hpp \ + se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp xml/XMLWriter.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/EPPException.hpp common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/Period.hpp se/PeriodUnit.hpp se/NAPTR.hpp se/Appendable.hpp \ + se/E164Extension.hpp diff --git a/AusRegEPPTK/se/EnumDomainInfoResponse.d b/AusRegEPPTK/se/EnumDomainInfoResponse.d new file mode 100644 index 0000000..2465a37 --- /dev/null +++ b/AusRegEPPTK/se/EnumDomainInfoResponse.d @@ -0,0 +1,10 @@ +build/EnumDomainInfoResponse.o se/EnumDomainInfoResponse.d: \ + se/EnumDomainInfoResponse.cpp se/EnumDomainInfoResponse.hpp \ + se/DomainInfoResponse.hpp se/InfoResponse.hpp se/DataResponse.hpp \ + se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \ + common/EPPException.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \ + se/ObjectType.hpp se/Status.hpp common/StringUtils.hpp se/NAPTR.hpp \ + se/Appendable.hpp diff --git a/AusRegEPPTK/se/EnumDomainInfoResponseTest.d b/AusRegEPPTK/se/EnumDomainInfoResponseTest.d new file mode 100644 index 0000000..85581b2 --- /dev/null +++ b/AusRegEPPTK/se/EnumDomainInfoResponseTest.d @@ -0,0 +1,13 @@ +build/EnumDomainInfoResponseTest.o se/EnumDomainInfoResponseTest.d: \ + se/EnumDomainInfoResponseTest.cpp se/ContactCheckResponse.hpp \ + se/CheckResponse.hpp se/DataResponse.hpp se/Response.hpp \ + se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \ + common/IllegalStateException.hpp se/IllegalArgException.hpp \ + se/Result.hpp xml/ParsingException.hpp se/ObjectType.hpp \ + se/EnumDomainInfoResponse.hpp se/DomainInfoResponse.hpp \ + se/InfoResponse.hpp se/Status.hpp common/StringUtils.hpp se/NAPTR.hpp \ + se/Appendable.hpp xml/XMLParser.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp common/Test.hpp common/init.hpp \ + se/EPPDateFormatter.hpp diff --git a/AusRegEPPTK/se/EnumDomainUpdateCommand.d b/AusRegEPPTK/se/EnumDomainUpdateCommand.d new file mode 100644 index 0000000..a161153 --- /dev/null +++ b/AusRegEPPTK/se/EnumDomainUpdateCommand.d @@ -0,0 +1,11 @@ +build/EnumDomainUpdateCommand.o se/EnumDomainUpdateCommand.d: \ + se/EnumDomainUpdateCommand.cpp se/EnumDomainUpdateCommand.hpp \ + se/DomainUpdateCommand.hpp se/UpdateCommand.hpp se/ObjectCommand.hpp \ + se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp xml/XMLWriter.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/EPPException.hpp common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/NAPTR.hpp se/Appendable.hpp se/DomainAdd.hpp se/DomainAddRem.hpp \ + se/Status.hpp se/AddRemType.hpp se/DomainRem.hpp se/E164Extension.hpp diff --git a/AusRegEPPTK/se/EnumType.d b/AusRegEPPTK/se/EnumType.d new file mode 100644 index 0000000..a4cb042 --- /dev/null +++ b/AusRegEPPTK/se/EnumType.d @@ -0,0 +1,4 @@ +build/EnumType.o se/EnumType.d: se/EnumType.cpp se/EnumType.hpp \ + se/IllegalArgException.hpp common/EPPException.hpp common/ErrorPkg.hpp \ + common/Properties.hpp config/config.h common/ConfigurationError.hpp \ + common/Logger.hpp diff --git a/AusRegEPPTK/se/Greeting.d b/AusRegEPPTK/se/Greeting.d new file mode 100644 index 0000000..2e7bb5f --- /dev/null +++ b/AusRegEPPTK/se/Greeting.d @@ -0,0 +1,6 @@ +build/Greeting.o se/Greeting.d: se/Greeting.cpp se/Greeting.hpp \ + se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \ + common/IllegalStateException.hpp se/IllegalArgException.hpp \ + xml/ParsingException.hpp se/EPPDateFormatter.hpp diff --git a/AusRegEPPTK/se/HelloTest.d b/AusRegEPPTK/se/HelloTest.d new file mode 100644 index 0000000..6005f81 --- /dev/null +++ b/AusRegEPPTK/se/HelloTest.d @@ -0,0 +1,5 @@ +build/HelloTest.o se/HelloTest.d: se/HelloTest.cpp se/Hello.hpp \ + se/SendSE.hpp xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp xml/ParsingException.hpp se/CLTRID.hpp \ + common/init.hpp common/Test.hpp diff --git a/AusRegEPPTK/se/HostAddRem.d b/AusRegEPPTK/se/HostAddRem.d new file mode 100644 index 0000000..f3190da --- /dev/null +++ b/AusRegEPPTK/se/HostAddRem.d @@ -0,0 +1,5 @@ +build/HostAddRem.o se/HostAddRem.d: se/HostAddRem.cpp se/HostAddRem.hpp \ + se/InetAddress.hpp se/IPVersion.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp common/EPPException.hpp se/Appendable.hpp \ + se/Status.hpp common/StringUtils.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/ConfigurationError.hpp diff --git a/AusRegEPPTK/se/HostCheckCommandTest.d b/AusRegEPPTK/se/HostCheckCommandTest.d new file mode 100644 index 0000000..164b300 --- /dev/null +++ b/AusRegEPPTK/se/HostCheckCommandTest.d @@ -0,0 +1,11 @@ +build/HostCheckCommandTest.o se/HostCheckCommandTest.d: \ + se/HostCheckCommandTest.cpp common/init.hpp common/Test.hpp \ + common/EPPException.hpp se/CLTRID.hpp se/HostCheckCommand.hpp \ + se/CheckCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \ + xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/StandardObjectType.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp diff --git a/AusRegEPPTK/se/HostCheckResponse.d b/AusRegEPPTK/se/HostCheckResponse.d new file mode 100644 index 0000000..fde8cd7 --- /dev/null +++ b/AusRegEPPTK/se/HostCheckResponse.d @@ -0,0 +1,9 @@ +build/HostCheckResponse.o se/HostCheckResponse.d: \ + se/HostCheckResponse.cpp se/HostCheckResponse.hpp se/CheckResponse.hpp \ + se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \ + common/EPPException.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \ + se/ObjectType.hpp se/StandardObjectType.hpp se/EnumType.hpp \ + common/StringUtils.hpp diff --git a/AusRegEPPTK/se/HostCreateCommand.d b/AusRegEPPTK/se/HostCreateCommand.d new file mode 100644 index 0000000..c34ae2f --- /dev/null +++ b/AusRegEPPTK/se/HostCreateCommand.d @@ -0,0 +1,10 @@ +build/HostCreateCommand.o se/HostCreateCommand.d: \ + se/HostCreateCommand.cpp se/HostCreateCommand.hpp se/CreateCommand.hpp \ + se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp \ + xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/EPPException.hpp common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/InetAddress.hpp se/IPVersion.hpp se/Appendable.hpp \ + se/StandardObjectType.hpp diff --git a/AusRegEPPTK/se/HostCreateCommandTest.d b/AusRegEPPTK/se/HostCreateCommandTest.d new file mode 100644 index 0000000..85a49d0 --- /dev/null +++ b/AusRegEPPTK/se/HostCreateCommandTest.d @@ -0,0 +1,11 @@ +build/HostCreateCommandTest.o se/HostCreateCommandTest.d: \ + se/HostCreateCommandTest.cpp common/init.hpp common/Test.hpp \ + common/EPPException.hpp se/CLTRID.hpp se/HostCreateCommand.hpp \ + se/CreateCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \ + xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/InetAddress.hpp se/IPVersion.hpp se/Appendable.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp diff --git a/AusRegEPPTK/se/HostCreateResponse.d b/AusRegEPPTK/se/HostCreateResponse.d new file mode 100644 index 0000000..863ae23 --- /dev/null +++ b/AusRegEPPTK/se/HostCreateResponse.d @@ -0,0 +1,9 @@ +build/HostCreateResponse.o se/HostCreateResponse.d: \ + se/HostCreateResponse.cpp se/HostCreateResponse.hpp \ + se/CreateResponse.hpp se/DataResponse.hpp se/Response.hpp \ + se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \ + common/IllegalStateException.hpp se/IllegalArgException.hpp \ + se/Result.hpp xml/ParsingException.hpp se/ObjectType.hpp \ + se/StandardObjectType.hpp se/EnumType.hpp common/StringUtils.hpp diff --git a/AusRegEPPTK/se/HostDeleteCommandTest.d b/AusRegEPPTK/se/HostDeleteCommandTest.d new file mode 100644 index 0000000..dbaa099 --- /dev/null +++ b/AusRegEPPTK/se/HostDeleteCommandTest.d @@ -0,0 +1,11 @@ +build/HostDeleteCommandTest.o se/HostDeleteCommandTest.d: \ + se/HostDeleteCommandTest.cpp common/init.hpp common/Test.hpp \ + common/EPPException.hpp se/CLTRID.hpp se/HostDeleteCommand.hpp \ + se/DeleteCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \ + xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/ObjectType.hpp se/StandardObjectType.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp se/StandardCommandType.hpp se/CommandType.hpp \ + common/StringUtils.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp diff --git a/AusRegEPPTK/se/HostInfoCommandTest.d b/AusRegEPPTK/se/HostInfoCommandTest.d new file mode 100644 index 0000000..d74537d --- /dev/null +++ b/AusRegEPPTK/se/HostInfoCommandTest.d @@ -0,0 +1,10 @@ +build/HostInfoCommandTest.o se/HostInfoCommandTest.d: \ + se/HostInfoCommandTest.cpp se/HostInfoCommand.hpp se/InfoCommand.hpp \ + se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp \ + xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/EPPException.hpp common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \ + xml/XStr.hpp se/StandardObjectType.hpp se/CLTRID.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp common/Test.hpp common/init.hpp diff --git a/AusRegEPPTK/se/HostInfoResponse.d b/AusRegEPPTK/se/HostInfoResponse.d new file mode 100644 index 0000000..c804014 --- /dev/null +++ b/AusRegEPPTK/se/HostInfoResponse.d @@ -0,0 +1,10 @@ +build/HostInfoResponse.o se/HostInfoResponse.d: se/HostInfoResponse.cpp \ + se/HostInfoResponse.hpp se/InfoResponse.hpp se/DataResponse.hpp \ + se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \ + common/EPPException.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \ + se/ObjectType.hpp se/Status.hpp common/StringUtils.hpp \ + se/InetAddress.hpp se/IPVersion.hpp se/EnumType.hpp se/Appendable.hpp \ + se/StandardObjectType.hpp diff --git a/AusRegEPPTK/se/HostInfoResponseTest.d b/AusRegEPPTK/se/HostInfoResponseTest.d new file mode 100644 index 0000000..4034f74 --- /dev/null +++ b/AusRegEPPTK/se/HostInfoResponseTest.d @@ -0,0 +1,12 @@ +build/HostInfoResponseTest.o se/HostInfoResponseTest.d: \ + se/HostInfoResponseTest.cpp se/HostInfoResponse.hpp se/InfoResponse.hpp \ + se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \ + common/EPPException.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \ + se/ObjectType.hpp se/Status.hpp common/StringUtils.hpp \ + se/InetAddress.hpp se/IPVersion.hpp se/EnumType.hpp se/Appendable.hpp \ + se/CLTRID.hpp se/EPPDateFormatter.hpp xml/XMLParser.hpp \ + session/Timer.hpp common/ParameterSyntaxException.hpp common/init.hpp \ + common/Test.hpp diff --git a/AusRegEPPTK/se/HostUpdateCommand.d b/AusRegEPPTK/se/HostUpdateCommand.d new file mode 100644 index 0000000..b8dc83a --- /dev/null +++ b/AusRegEPPTK/se/HostUpdateCommand.d @@ -0,0 +1,10 @@ +build/HostUpdateCommand.o se/HostUpdateCommand.d: \ + se/HostUpdateCommand.cpp se/HostUpdateCommand.hpp se/UpdateCommand.hpp \ + se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp \ + xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/EPPException.hpp common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/HostAddRem.hpp se/InetAddress.hpp se/IPVersion.hpp se/Appendable.hpp \ + se/Status.hpp se/StandardObjectType.hpp xml/XMLHelper.hpp xml/XStr.hpp diff --git a/AusRegEPPTK/se/IPVersion.d b/AusRegEPPTK/se/IPVersion.d new file mode 100644 index 0000000..a1f3555 --- /dev/null +++ b/AusRegEPPTK/se/IPVersion.d @@ -0,0 +1,2 @@ +build/IPVersion.o se/IPVersion.d: se/IPVersion.cpp se/IPVersion.hpp \ + se/EnumType.hpp se/IllegalArgException.hpp common/EPPException.hpp diff --git a/AusRegEPPTK/se/IPVersionTest.d b/AusRegEPPTK/se/IPVersionTest.d new file mode 100644 index 0000000..b28c2d7 --- /dev/null +++ b/AusRegEPPTK/se/IPVersionTest.d @@ -0,0 +1,4 @@ +build/IPVersionTest.o se/IPVersionTest.d: se/IPVersionTest.cpp \ + common/init.hpp common/Test.hpp common/EPPException.hpp se/CLTRID.hpp \ + se/IPVersion.hpp se/EnumType.hpp se/IllegalArgException.hpp \ + session/Timer.hpp common/ParameterSyntaxException.hpp diff --git a/AusRegEPPTK/se/InetAddress.d b/AusRegEPPTK/se/InetAddress.d new file mode 100644 index 0000000..fb1219c --- /dev/null +++ b/AusRegEPPTK/se/InetAddress.d @@ -0,0 +1,5 @@ +build/InetAddress.o se/InetAddress.d: se/InetAddress.cpp \ + se/InetAddress.hpp se/IPVersion.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp common/EPPException.hpp se/Appendable.hpp \ + xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp diff --git a/AusRegEPPTK/se/InfoResponse.d b/AusRegEPPTK/se/InfoResponse.d new file mode 100644 index 0000000..1593b2d --- /dev/null +++ b/AusRegEPPTK/se/InfoResponse.d @@ -0,0 +1,9 @@ +build/InfoResponse.o se/InfoResponse.d: se/InfoResponse.cpp \ + se/InfoResponse.hpp se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp \ + xml/XMLDocument.hpp common/EPPException.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \ + se/ObjectType.hpp se/Status.hpp common/StringUtils.hpp \ + se/StandardCommandType.hpp se/EnumType.hpp se/CommandType.hpp \ + se/EPPDateFormatter.hpp diff --git a/AusRegEPPTK/se/KVExtension.d b/AusRegEPPTK/se/KVExtension.d new file mode 100644 index 0000000..5d936ff --- /dev/null +++ b/AusRegEPPTK/se/KVExtension.d @@ -0,0 +1,2 @@ +build/KVExtension.o se/KVExtension.d: se/KVExtension.cpp \ + se/KVExtension.hpp se/Extension.hpp diff --git a/AusRegEPPTK/se/LoginCommand.d b/AusRegEPPTK/se/LoginCommand.d new file mode 100644 index 0000000..1ee86d8 --- /dev/null +++ b/AusRegEPPTK/se/LoginCommand.d @@ -0,0 +1,8 @@ +build/LoginCommand.o se/LoginCommand.d: se/LoginCommand.cpp \ + se/LoginCommand.hpp se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp \ + xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/EPPException.hpp common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/StandardCommandType.hpp se/EnumType.hpp se/IllegalArgException.hpp \ + se/CommandType.hpp common/StringUtils.hpp se/StandardObjectType.hpp \ + se/ObjectType.hpp xml/XMLHelper.hpp xml/XStr.hpp diff --git a/AusRegEPPTK/se/LoginCommandTest.d b/AusRegEPPTK/se/LoginCommandTest.d new file mode 100644 index 0000000..aff4cb9 --- /dev/null +++ b/AusRegEPPTK/se/LoginCommandTest.d @@ -0,0 +1,8 @@ +build/LoginCommandTest.o se/LoginCommandTest.d: se/LoginCommandTest.cpp \ + se/LoginCommand.hpp se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp \ + xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/EPPException.hpp common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/CLTRID.hpp se/Period.hpp se/PeriodUnit.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp common/init.hpp common/Test.hpp diff --git a/AusRegEPPTK/se/LogoutCommandTest.d b/AusRegEPPTK/se/LogoutCommandTest.d new file mode 100644 index 0000000..a511ceb --- /dev/null +++ b/AusRegEPPTK/se/LogoutCommandTest.d @@ -0,0 +1,9 @@ +build/LogoutCommandTest.o se/LogoutCommandTest.d: \ + se/LogoutCommandTest.cpp common/init.hpp common/Test.hpp \ + common/EPPException.hpp se/CLTRID.hpp se/LogoutCommand.hpp \ + se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp xml/XMLWriter.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \ + se/CommandExtension.hpp se/StandardCommandType.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \ + session/Timer.hpp common/ParameterSyntaxException.hpp diff --git a/AusRegEPPTK/se/NAPTR.d b/AusRegEPPTK/se/NAPTR.d new file mode 100644 index 0000000..219b7a9 --- /dev/null +++ b/AusRegEPPTK/se/NAPTR.d @@ -0,0 +1,4 @@ +build/NAPTR.o se/NAPTR.d: se/NAPTR.cpp se/NAPTR.hpp se/Appendable.hpp \ + common/StringUtils.hpp xml/XMLHelper.hpp xml/XStr.hpp xml/XMLWriter.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/EPPException.hpp common/ConfigurationError.hpp diff --git a/AusRegEPPTK/se/NotificationResponse.d b/AusRegEPPTK/se/NotificationResponse.d new file mode 100644 index 0000000..c54a866 --- /dev/null +++ b/AusRegEPPTK/se/NotificationResponse.d @@ -0,0 +1,9 @@ +build/NotificationResponse.o se/NotificationResponse.d: \ + se/NotificationResponse.cpp se/NotificationResponse.hpp \ + se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \ + common/EPPException.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \ + se/ObjectType.hpp se/EPPDateFormatter.hpp se/StandardCommandType.hpp \ + se/EnumType.hpp se/CommandType.hpp common/StringUtils.hpp diff --git a/AusRegEPPTK/se/ObjectCommand.d b/AusRegEPPTK/se/ObjectCommand.d new file mode 100644 index 0000000..61803f4 --- /dev/null +++ b/AusRegEPPTK/se/ObjectCommand.d @@ -0,0 +1,7 @@ +build/ObjectCommand.o se/ObjectCommand.d: se/ObjectCommand.cpp \ + se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp \ + xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/EPPException.hpp common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/ObjectType.hpp xml/XStr.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/IllegalArgException.hpp common/ErrorPkg.hpp diff --git a/AusRegEPPTK/se/Period.d b/AusRegEPPTK/se/Period.d new file mode 100644 index 0000000..16642a9 --- /dev/null +++ b/AusRegEPPTK/se/Period.d @@ -0,0 +1,5 @@ +build/Period.o se/Period.d: se/Period.cpp se/Period.hpp se/PeriodUnit.hpp \ + se/EnumType.hpp se/IllegalArgException.hpp common/EPPException.hpp \ + xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp xml/XMLHelper.hpp \ + xml/XStr.hpp diff --git a/AusRegEPPTK/se/PeriodUnit.d b/AusRegEPPTK/se/PeriodUnit.d new file mode 100644 index 0000000..07e7e53 --- /dev/null +++ b/AusRegEPPTK/se/PeriodUnit.d @@ -0,0 +1,2 @@ +build/PeriodUnit.o se/PeriodUnit.d: se/PeriodUnit.cpp se/PeriodUnit.hpp \ + se/EnumType.hpp se/IllegalArgException.hpp common/EPPException.hpp diff --git a/AusRegEPPTK/se/PollAckCommandTest.d b/AusRegEPPTK/se/PollAckCommandTest.d new file mode 100644 index 0000000..349500d --- /dev/null +++ b/AusRegEPPTK/se/PollAckCommandTest.d @@ -0,0 +1,10 @@ +build/PollAckCommandTest.o se/PollAckCommandTest.d: \ + se/PollAckCommandTest.cpp se/PollAckCommand.hpp se/PollCommand.hpp \ + xml/XStr.hpp se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp \ + xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/EPPException.hpp common/ConfigurationError.hpp \ + xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/StandardCommandType.hpp se/EnumType.hpp se/IllegalArgException.hpp \ + se/CommandType.hpp common/StringUtils.hpp se/PollOperation.hpp \ + common/ErrorPkg.hpp se/CLTRID.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp common/Test.hpp common/init.hpp diff --git a/AusRegEPPTK/se/PollOperation.d b/AusRegEPPTK/se/PollOperation.d new file mode 100644 index 0000000..3215b86 --- /dev/null +++ b/AusRegEPPTK/se/PollOperation.d @@ -0,0 +1,3 @@ +build/PollOperation.o se/PollOperation.d: se/PollOperation.cpp \ + se/PollOperation.hpp se/EnumType.hpp se/IllegalArgException.hpp \ + common/EPPException.hpp diff --git a/AusRegEPPTK/se/PollResponse.d b/AusRegEPPTK/se/PollResponse.d new file mode 100644 index 0000000..4ec2e2c --- /dev/null +++ b/AusRegEPPTK/se/PollResponse.d @@ -0,0 +1,12 @@ +build/PollResponse.o se/PollResponse.d: se/PollResponse.cpp \ + se/PollResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \ + common/EPPException.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \ + se/ContactTransferResponse.hpp se/StandardObjectType.hpp se/EnumType.hpp \ + se/ObjectType.hpp se/TransferResponse.hpp se/DataResponse.hpp \ + se/DomainTransferResponse.hpp se/ContactNotificationResponse.hpp \ + se/NotificationResponse.hpp se/DomainNotificationResponse.hpp \ + se/ContactInfoResponse.hpp se/InfoResponse.hpp se/Status.hpp \ + common/StringUtils.hpp se/DomainInfoResponse.hpp diff --git a/AusRegEPPTK/se/PollResponseTest.d b/AusRegEPPTK/se/PollResponseTest.d new file mode 100644 index 0000000..307e166 --- /dev/null +++ b/AusRegEPPTK/se/PollResponseTest.d @@ -0,0 +1,14 @@ +build/PollResponseTest.o se/PollResponseTest.d: se/PollResponseTest.cpp \ + se/PollResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \ + common/EPPException.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \ + se/ContactTransferResponse.hpp se/StandardObjectType.hpp se/EnumType.hpp \ + se/ObjectType.hpp se/TransferResponse.hpp se/DataResponse.hpp \ + se/DomainTransferResponse.hpp se/ContactNotificationResponse.hpp \ + se/NotificationResponse.hpp se/DomainNotificationResponse.hpp \ + se/ContactInfoResponse.hpp se/InfoResponse.hpp se/Status.hpp \ + common/StringUtils.hpp se/DomainInfoResponse.hpp se/CLTRID.hpp \ + se/EPPDateFormatter.hpp xml/XMLParser.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp common/init.hpp common/Test.hpp diff --git a/AusRegEPPTK/se/PostalInfo.d b/AusRegEPPTK/se/PostalInfo.d new file mode 100644 index 0000000..86741c1 --- /dev/null +++ b/AusRegEPPTK/se/PostalInfo.d @@ -0,0 +1,5 @@ +build/PostalInfo.o se/PostalInfo.d: se/PostalInfo.cpp se/PostalInfo.hpp \ + se/PostalInfoType.hpp se/EnumType.hpp se/IllegalArgException.hpp \ + common/EPPException.hpp se/Appendable.hpp xml/XMLHelper.hpp xml/XStr.hpp \ + xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp diff --git a/AusRegEPPTK/se/PostalInfoType.d b/AusRegEPPTK/se/PostalInfoType.d new file mode 100644 index 0000000..30ae90d --- /dev/null +++ b/AusRegEPPTK/se/PostalInfoType.d @@ -0,0 +1,3 @@ +build/PostalInfoType.o se/PostalInfoType.d: se/PostalInfoType.cpp \ + se/PostalInfoType.hpp se/EnumType.hpp se/IllegalArgException.hpp \ + common/EPPException.hpp diff --git a/AusRegEPPTK/se/ProtocolExtensionCommand.d b/AusRegEPPTK/se/ProtocolExtensionCommand.d new file mode 100644 index 0000000..510b73f --- /dev/null +++ b/AusRegEPPTK/se/ProtocolExtensionCommand.d @@ -0,0 +1,8 @@ +build/ProtocolExtensionCommand.o se/ProtocolExtensionCommand.d: \ + se/ProtocolExtensionCommand.cpp common/ErrorPkg.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp common/Logger.hpp se/CLTRID.hpp \ + se/IllegalArgException.hpp se/ProtocolExtensionCommand.hpp se/SendSE.hpp \ + xml/EPPWriter.hpp xml/XMLWriter.hpp xml/ParsingException.hpp \ + se/CommandType.hpp common/StringUtils.hpp se/ObjectType.hpp \ + se/Extension.hpp xml/XStr.hpp xml/XMLHelper.hpp diff --git a/AusRegEPPTK/se/ReceiveSE.d b/AusRegEPPTK/se/ReceiveSE.d new file mode 100644 index 0000000..877c65b --- /dev/null +++ b/AusRegEPPTK/se/ReceiveSE.d @@ -0,0 +1,4 @@ +build/ReceiveSE.o se/ReceiveSE.d: se/ReceiveSE.cpp se/ReceiveSE.hpp \ + xml/XMLDocument.hpp common/EPPException.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/ConfigurationError.hpp \ + common/StringUtils.hpp diff --git a/AusRegEPPTK/se/RegistrantObjectType.d b/AusRegEPPTK/se/RegistrantObjectType.d new file mode 100644 index 0000000..c01c08a --- /dev/null +++ b/AusRegEPPTK/se/RegistrantObjectType.d @@ -0,0 +1,3 @@ +build/RegistrantObjectType.o se/RegistrantObjectType.d: \ + se/RegistrantObjectType.cpp se/RegistrantObjectType.hpp \ + se/ObjectType.hpp diff --git a/AusRegEPPTK/se/RegistrantTransferCommandType.d b/AusRegEPPTK/se/RegistrantTransferCommandType.d new file mode 100644 index 0000000..6bd45f2 --- /dev/null +++ b/AusRegEPPTK/se/RegistrantTransferCommandType.d @@ -0,0 +1,4 @@ +build/RegistrantTransferCommandType.o se/RegistrantTransferCommandType.d: \ + se/RegistrantTransferCommandType.cpp \ + se/RegistrantTransferCommandType.hpp se/CommandType.hpp \ + common/StringUtils.hpp diff --git a/AusRegEPPTK/se/Response.d b/AusRegEPPTK/se/Response.d new file mode 100644 index 0000000..7f818ac --- /dev/null +++ b/AusRegEPPTK/se/Response.d @@ -0,0 +1,8 @@ +build/Response.o se/Response.d: se/Response.cpp se/Response.hpp \ + se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \ + common/IllegalStateException.hpp se/IllegalArgException.hpp \ + se/Result.hpp xml/ParsingException.hpp se/EPPDateFormatter.hpp \ + se/ResponseExtension.hpp common/StringUtils.hpp common/Constants.hpp \ + common/ErrorPkg.hpp diff --git a/AusRegEPPTK/se/ResponseExtension.d b/AusRegEPPTK/se/ResponseExtension.d new file mode 100644 index 0000000..0285334 --- /dev/null +++ b/AusRegEPPTK/se/ResponseExtension.d @@ -0,0 +1,7 @@ +build/ResponseExtension.o se/ResponseExtension.d: \ + se/ResponseExtension.cpp se/Response.hpp se/ReceiveSE.hpp \ + xml/XMLDocument.hpp common/EPPException.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \ + se/ResponseExtension.hpp diff --git a/AusRegEPPTK/se/Result.d b/AusRegEPPTK/se/Result.d new file mode 100644 index 0000000..c8eeab2 --- /dev/null +++ b/AusRegEPPTK/se/Result.d @@ -0,0 +1,2 @@ +build/Result.o se/Result.d: se/Result.cpp se/Result.hpp \ + common/StringUtils.hpp diff --git a/AusRegEPPTK/se/SendSE.d b/AusRegEPPTK/se/SendSE.d new file mode 100644 index 0000000..f499662 --- /dev/null +++ b/AusRegEPPTK/se/SendSE.d @@ -0,0 +1,4 @@ +build/SendSE.o se/SendSE.d: se/SendSE.cpp se/SendSE.hpp xml/EPPWriter.hpp \ + xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/EPPException.hpp common/ConfigurationError.hpp \ + xml/ParsingException.hpp diff --git a/AusRegEPPTK/se/StandardCommandType.d b/AusRegEPPTK/se/StandardCommandType.d new file mode 100644 index 0000000..9ab0ab9 --- /dev/null +++ b/AusRegEPPTK/se/StandardCommandType.d @@ -0,0 +1,4 @@ +build/StandardCommandType.o se/StandardCommandType.d: \ + se/StandardCommandType.cpp se/StandardCommandType.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp common/EPPException.hpp se/CommandType.hpp \ + common/StringUtils.hpp diff --git a/AusRegEPPTK/se/StandardObjectType.d b/AusRegEPPTK/se/StandardObjectType.d new file mode 100644 index 0000000..45fae9f --- /dev/null +++ b/AusRegEPPTK/se/StandardObjectType.d @@ -0,0 +1,3 @@ +build/StandardObjectType.o se/StandardObjectType.d: \ + se/StandardObjectType.cpp se/StandardObjectType.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp common/EPPException.hpp se/ObjectType.hpp diff --git a/AusRegEPPTK/se/SyncExtension.d b/AusRegEPPTK/se/SyncExtension.d new file mode 100644 index 0000000..3131699 --- /dev/null +++ b/AusRegEPPTK/se/SyncExtension.d @@ -0,0 +1,2 @@ +build/SyncExtension.o se/SyncExtension.d: se/SyncExtension.cpp \ + se/SyncExtension.hpp se/Extension.hpp diff --git a/AusRegEPPTK/se/TransferCommand.d b/AusRegEPPTK/se/TransferCommand.d new file mode 100644 index 0000000..314f158 --- /dev/null +++ b/AusRegEPPTK/se/TransferCommand.d @@ -0,0 +1,10 @@ +build/TransferCommand.o se/TransferCommand.d: se/TransferCommand.cpp \ + se/TransferCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \ + xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \ + se/CommandExtension.hpp se/ObjectType.hpp se/Period.hpp \ + se/PeriodUnit.hpp se/EnumType.hpp se/IllegalArgException.hpp \ + se/TransferOp.hpp se/StandardCommandType.hpp se/CommandType.hpp \ + common/StringUtils.hpp xml/XMLHelper.hpp xml/XStr.hpp \ + common/ErrorPkg.hpp diff --git a/AusRegEPPTK/se/TransferOp.d b/AusRegEPPTK/se/TransferOp.d new file mode 100644 index 0000000..f57c66b --- /dev/null +++ b/AusRegEPPTK/se/TransferOp.d @@ -0,0 +1,2 @@ +build/TransferOp.o se/TransferOp.d: se/TransferOp.cpp se/TransferOp.hpp \ + se/EnumType.hpp se/IllegalArgException.hpp common/EPPException.hpp diff --git a/AusRegEPPTK/se/TransferResponse.d b/AusRegEPPTK/se/TransferResponse.d new file mode 100644 index 0000000..c9a4a13 --- /dev/null +++ b/AusRegEPPTK/se/TransferResponse.d @@ -0,0 +1,9 @@ +build/TransferResponse.o se/TransferResponse.d: se/TransferResponse.cpp \ + se/TransferResponse.hpp se/DataResponse.hpp se/Response.hpp \ + se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \ + common/IllegalStateException.hpp se/IllegalArgException.hpp \ + se/Result.hpp xml/ParsingException.hpp se/ObjectType.hpp \ + se/StandardCommandType.hpp se/EnumType.hpp se/CommandType.hpp \ + common/StringUtils.hpp se/EPPDateFormatter.hpp diff --git a/AusRegEPPTK/se/XMLGregorianCalendar.d b/AusRegEPPTK/se/XMLGregorianCalendar.d new file mode 100644 index 0000000..5e30edc --- /dev/null +++ b/AusRegEPPTK/se/XMLGregorianCalendar.d @@ -0,0 +1,4 @@ +build/XMLGregorianCalendar.o se/XMLGregorianCalendar.d: \ + se/XMLGregorianCalendar.cpp se/XMLGregorianCalendar.hpp \ + common/IllegalStateException.hpp common/EPPException.hpp \ + se/IllegalArgException.hpp common/StringUtils.hpp diff --git a/AusRegEPPTK/se/XMLGregorianCalendarTest.d b/AusRegEPPTK/se/XMLGregorianCalendarTest.d new file mode 100644 index 0000000..7eda2a0 --- /dev/null +++ b/AusRegEPPTK/se/XMLGregorianCalendarTest.d @@ -0,0 +1,4 @@ +build/XMLGregorianCalendarTest.o se/XMLGregorianCalendarTest.d: \ + se/XMLGregorianCalendarTest.cpp common/Test.hpp common/EPPException.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp diff --git a/AusRegEPPTK/se/secDNS/DomainSecDNSCreateCommandExtension.d b/AusRegEPPTK/se/secDNS/DomainSecDNSCreateCommandExtension.d new file mode 100644 index 0000000..29efbcf --- /dev/null +++ b/AusRegEPPTK/se/secDNS/DomainSecDNSCreateCommandExtension.d @@ -0,0 +1,9 @@ +build/DomainSecDNSCreateCommandExtension.o se/secDNS/DomainSecDNSCreateCommandExtension.d: \ + se/secDNS/DomainSecDNSCreateCommandExtension.cpp se/Command.hpp \ + se/SendSE.hpp xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \ + se/CommandExtension.hpp se/secDNS/SecDNSExtension.hpp xml/XMLHelper.hpp \ + xml/XStr.hpp se/secDNS/DomainSecDNSCreateCommandExtension.hpp \ + se/secDNS/SecDNSDSOrKeyType.hpp se/secDNS/SecDNSMaxSigLifeType.hpp \ + se/secDNS/SecDNSKeyData.hpp se/secDNS/SecDNSDSData.hpp diff --git a/AusRegEPPTK/se/secDNS/DomainSecDNSCreateCommandExtensionTest.d b/AusRegEPPTK/se/secDNS/DomainSecDNSCreateCommandExtensionTest.d new file mode 100644 index 0000000..483d421 --- /dev/null +++ b/AusRegEPPTK/se/secDNS/DomainSecDNSCreateCommandExtensionTest.d @@ -0,0 +1,14 @@ +build/DomainSecDNSCreateCommandExtensionTest.o se/secDNS/DomainSecDNSCreateCommandExtensionTest.d: \ + se/secDNS/DomainSecDNSCreateCommandExtensionTest.cpp xml/XMLParser.hpp \ + xml/ParsingException.hpp common/EPPException.hpp common/init.hpp \ + common/Test.hpp session/Timer.hpp common/ParameterSyntaxException.hpp \ + se/secDNS/SecDNSDSData.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/ConfigurationError.hpp \ + se/secDNS/SecDNSKeyData.hpp se/secDNS/SecDNSDSOrKeyType.hpp \ + se/secDNS/SecDNSMaxSigLifeType.hpp xml/XMLHelper.hpp xml/XStr.hpp \ + se/secDNS/DomainSecDNSCreateCommandExtension.hpp se/CommandExtension.hpp \ + se/DomainCreateCommand.hpp se/CreateCommand.hpp se/ObjectCommand.hpp \ + se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp se/Extension.hpp \ + se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/Period.hpp se/PeriodUnit.hpp se/CLTRID.hpp diff --git a/AusRegEPPTK/se/secDNS/DomainSecDNSInfoResponseExtension.d b/AusRegEPPTK/se/secDNS/DomainSecDNSInfoResponseExtension.d new file mode 100644 index 0000000..196d3ad --- /dev/null +++ b/AusRegEPPTK/se/secDNS/DomainSecDNSInfoResponseExtension.d @@ -0,0 +1,8 @@ +build/DomainSecDNSInfoResponseExtension.o se/secDNS/DomainSecDNSInfoResponseExtension.d: \ + se/secDNS/DomainSecDNSInfoResponseExtension.cpp \ + se/secDNS/SecDNSMaxSigLifeType.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp xml/XMLHelper.hpp xml/XStr.hpp \ + se/secDNS/SecDNSDSData.hpp se/secDNS/SecDNSKeyData.hpp \ + se/secDNS/DomainSecDNSInfoResponseExtension.hpp se/ResponseExtension.hpp \ + se/ReceiveSE.hpp xml/XMLDocument.hpp se/secDNS/SecDNSDSOrKeyType.hpp diff --git a/AusRegEPPTK/se/secDNS/DomainSecDNSInfoResponseExtensionTest.d b/AusRegEPPTK/se/secDNS/DomainSecDNSInfoResponseExtensionTest.d new file mode 100644 index 0000000..af962dd --- /dev/null +++ b/AusRegEPPTK/se/secDNS/DomainSecDNSInfoResponseExtensionTest.d @@ -0,0 +1,14 @@ +build/DomainSecDNSInfoResponseExtensionTest.o se/secDNS/DomainSecDNSInfoResponseExtensionTest.d: \ + se/secDNS/DomainSecDNSInfoResponseExtensionTest.cpp xml/XMLParser.hpp \ + xml/ParsingException.hpp common/EPPException.hpp common/init.hpp \ + common/Test.hpp se/secDNS/SecDNSDSData.hpp xml/XMLWriter.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/ConfigurationError.hpp se/secDNS/SecDNSKeyData.hpp \ + se/secDNS/SecDNSDSOrKeyType.hpp se/secDNS/SecDNSMaxSigLifeType.hpp \ + xml/XMLHelper.hpp xml/XStr.hpp \ + se/secDNS/DomainSecDNSInfoResponseExtension.hpp se/ResponseExtension.hpp \ + se/ReceiveSE.hpp xml/XMLDocument.hpp se/DomainInfoResponse.hpp \ + se/InfoResponse.hpp se/DataResponse.hpp se/Response.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp se/Result.hpp se/ObjectType.hpp se/Status.hpp \ + common/StringUtils.hpp diff --git a/AusRegEPPTK/se/secDNS/DomainSecDNSUpdateCommandExtension.d b/AusRegEPPTK/se/secDNS/DomainSecDNSUpdateCommandExtension.d new file mode 100644 index 0000000..9a928cd --- /dev/null +++ b/AusRegEPPTK/se/secDNS/DomainSecDNSUpdateCommandExtension.d @@ -0,0 +1,10 @@ +build/DomainSecDNSUpdateCommandExtension.o se/secDNS/DomainSecDNSUpdateCommandExtension.d: \ + se/secDNS/DomainSecDNSUpdateCommandExtension.cpp se/Command.hpp \ + se/SendSE.hpp xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \ + se/CommandExtension.hpp se/secDNS/SecDNSExtension.hpp xml/XMLHelper.hpp \ + xml/XStr.hpp se/secDNS/DomainSecDNSUpdateCommandExtension.hpp \ + se/secDNS/SecDNSRemType.hpp se/secDNS/SecDNSKeyData.hpp \ + se/secDNS/SecDNSDSData.hpp se/secDNS/SecDNSDSOrKeyType.hpp \ + se/secDNS/SecDNSMaxSigLifeType.hpp se/secDNS/SecDNSChgType.hpp diff --git a/AusRegEPPTK/se/secDNS/DomainSecDNSUpdateCommandExtensionTest.d b/AusRegEPPTK/se/secDNS/DomainSecDNSUpdateCommandExtensionTest.d new file mode 100644 index 0000000..b077625 --- /dev/null +++ b/AusRegEPPTK/se/secDNS/DomainSecDNSUpdateCommandExtensionTest.d @@ -0,0 +1,15 @@ +build/DomainSecDNSUpdateCommandExtensionTest.o se/secDNS/DomainSecDNSUpdateCommandExtensionTest.d: \ + se/secDNS/DomainSecDNSUpdateCommandExtensionTest.cpp xml/XMLParser.hpp \ + xml/ParsingException.hpp common/EPPException.hpp common/init.hpp \ + common/Test.hpp session/Timer.hpp common/ParameterSyntaxException.hpp \ + se/secDNS/SecDNSDSData.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/ConfigurationError.hpp \ + se/secDNS/SecDNSKeyData.hpp se/secDNS/SecDNSDSOrKeyType.hpp \ + se/secDNS/SecDNSMaxSigLifeType.hpp xml/XMLHelper.hpp xml/XStr.hpp \ + se/secDNS/DomainSecDNSUpdateCommandExtension.hpp se/CommandExtension.hpp \ + se/secDNS/SecDNSRemType.hpp se/secDNS/SecDNSChgType.hpp \ + se/DomainUpdateCommand.hpp se/UpdateCommand.hpp se/ObjectCommand.hpp \ + se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp se/Extension.hpp \ + se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/CLTRID.hpp diff --git a/AusRegEPPTK/se/secDNS/SecDNSChgType.d b/AusRegEPPTK/se/secDNS/SecDNSChgType.d new file mode 100644 index 0000000..8b4ef61 --- /dev/null +++ b/AusRegEPPTK/se/secDNS/SecDNSChgType.d @@ -0,0 +1,5 @@ +build/SecDNSChgType.o se/secDNS/SecDNSChgType.d: \ + se/secDNS/SecDNSChgType.cpp xml/XMLHelper.hpp xml/XStr.hpp \ + se/secDNS/SecDNSChgType.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp se/secDNS/SecDNSMaxSigLifeType.hpp diff --git a/AusRegEPPTK/se/secDNS/SecDNSDSData.d b/AusRegEPPTK/se/secDNS/SecDNSDSData.d new file mode 100644 index 0000000..a80d3cb --- /dev/null +++ b/AusRegEPPTK/se/secDNS/SecDNSDSData.d @@ -0,0 +1,5 @@ +build/SecDNSDSData.o se/secDNS/SecDNSDSData.d: se/secDNS/SecDNSDSData.cpp \ + xml/XMLHelper.hpp xml/XStr.hpp se/secDNS/SecDNSDSData.hpp \ + xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/EPPException.hpp common/ConfigurationError.hpp \ + se/secDNS/SecDNSKeyData.hpp diff --git a/AusRegEPPTK/se/secDNS/SecDNSDSOrKeyType.d b/AusRegEPPTK/se/secDNS/SecDNSDSOrKeyType.d new file mode 100644 index 0000000..9f954c8 --- /dev/null +++ b/AusRegEPPTK/se/secDNS/SecDNSDSOrKeyType.d @@ -0,0 +1,6 @@ +build/SecDNSDSOrKeyType.o se/secDNS/SecDNSDSOrKeyType.d: \ + se/secDNS/SecDNSDSOrKeyType.cpp xml/XMLHelper.hpp xml/XStr.hpp \ + se/secDNS/SecDNSDSOrKeyType.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp se/secDNS/SecDNSMaxSigLifeType.hpp \ + se/secDNS/SecDNSKeyData.hpp se/secDNS/SecDNSDSData.hpp diff --git a/AusRegEPPTK/se/secDNS/SecDNSExtension.d b/AusRegEPPTK/se/secDNS/SecDNSExtension.d new file mode 100644 index 0000000..e67cf4a --- /dev/null +++ b/AusRegEPPTK/se/secDNS/SecDNSExtension.d @@ -0,0 +1,3 @@ +build/SecDNSExtension.o se/secDNS/SecDNSExtension.d: \ + se/secDNS/SecDNSExtension.cpp se/secDNS/SecDNSExtension.hpp \ + se/Extension.hpp diff --git a/AusRegEPPTK/se/secDNS/SecDNSKeyData.d b/AusRegEPPTK/se/secDNS/SecDNSKeyData.d new file mode 100644 index 0000000..fe7acb1 --- /dev/null +++ b/AusRegEPPTK/se/secDNS/SecDNSKeyData.d @@ -0,0 +1,5 @@ +build/SecDNSKeyData.o se/secDNS/SecDNSKeyData.d: \ + se/secDNS/SecDNSKeyData.cpp xml/XMLHelper.hpp xml/XStr.hpp \ + se/secDNS/SecDNSKeyData.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp diff --git a/AusRegEPPTK/se/secDNS/SecDNSRemType.d b/AusRegEPPTK/se/secDNS/SecDNSRemType.d new file mode 100644 index 0000000..dc0db59 --- /dev/null +++ b/AusRegEPPTK/se/secDNS/SecDNSRemType.d @@ -0,0 +1,6 @@ +build/SecDNSRemType.o se/secDNS/SecDNSRemType.d: \ + se/secDNS/SecDNSRemType.cpp xml/XMLHelper.hpp xml/XStr.hpp \ + se/secDNS/SecDNSRemType.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp se/secDNS/SecDNSKeyData.hpp \ + se/secDNS/SecDNSDSData.hpp diff --git a/AusRegEPPTK/session/CertificateUserMismatchException.d b/AusRegEPPTK/session/CertificateUserMismatchException.d new file mode 100644 index 0000000..f7cefa1 --- /dev/null +++ b/AusRegEPPTK/session/CertificateUserMismatchException.d @@ -0,0 +1,5 @@ +build/CertificateUserMismatchException.o session/CertificateUserMismatchException.d: \ + session/CertificateUserMismatchException.cpp \ + session/CertificateUserMismatchException.hpp session/LoginException.hpp \ + common/EPPException.hpp common/ErrorPkg.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp common/Logger.hpp diff --git a/AusRegEPPTK/session/CommandCounter.d b/AusRegEPPTK/session/CommandCounter.d new file mode 100644 index 0000000..0c2694d --- /dev/null +++ b/AusRegEPPTK/session/CommandCounter.d @@ -0,0 +1,4 @@ +build/CommandCounter.o session/CommandCounter.d: \ + session/CommandCounter.cpp se/CommandType.hpp common/StringUtils.hpp \ + session/CommandCounter.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp common/EPPException.hpp diff --git a/AusRegEPPTK/session/CommandCounterTest.d b/AusRegEPPTK/session/CommandCounterTest.d new file mode 100644 index 0000000..41b654d --- /dev/null +++ b/AusRegEPPTK/session/CommandCounterTest.d @@ -0,0 +1,6 @@ +build/CommandCounterTest.o session/CommandCounterTest.d: \ + session/CommandCounterTest.cpp se/StandardCommandType.hpp \ + se/EnumType.hpp se/IllegalArgException.hpp common/EPPException.hpp \ + se/CommandType.hpp common/StringUtils.hpp session/CommandCounter.hpp \ + session/Timer.hpp common/ParameterSyntaxException.hpp common/Test.hpp \ + common/init.hpp diff --git a/AusRegEPPTK/session/ResultCounter.d b/AusRegEPPTK/session/ResultCounter.d new file mode 100644 index 0000000..947e51d --- /dev/null +++ b/AusRegEPPTK/session/ResultCounter.d @@ -0,0 +1,2 @@ +build/ResultCounter.o session/ResultCounter.d: session/ResultCounter.cpp \ + session/ResultCounter.hpp diff --git a/AusRegEPPTK/session/SSLException.d b/AusRegEPPTK/session/SSLException.d new file mode 100644 index 0000000..9f42e6a --- /dev/null +++ b/AusRegEPPTK/session/SSLException.d @@ -0,0 +1,2 @@ +build/SSLException.o session/SSLException.d: session/SSLException.cpp \ + session/SSLException.hpp common/EPPException.hpp diff --git a/AusRegEPPTK/session/SessionFactory.d b/AusRegEPPTK/session/SessionFactory.d new file mode 100644 index 0000000..9314568 --- /dev/null +++ b/AusRegEPPTK/session/SessionFactory.d @@ -0,0 +1,11 @@ +build/SessionFactory.o session/SessionFactory.d: \ + session/SessionFactory.cpp session/SessionFactory.hpp \ + session/SessionConfigurationException.hpp common/EPPException.hpp \ + session/Session.hpp xml/ParsingException.hpp session/EPPIOException.hpp \ + session/EPPInterruptedException.hpp session/SessionOpenException.hpp \ + session/TLSSession.hpp session/StatsManager.hpp session/StatsViewer.hpp \ + se/CommandType.hpp common/StringUtils.hpp session/CommandCounter.hpp \ + session/ResultCounter.hpp xml/XMLParser.hpp xml/XMLDocument.hpp \ + common/IllegalStateException.hpp session/LoginException.hpp \ + session/LogoutException.hpp session/GreetingException.hpp \ + session/SessionLimitExceededException.hpp session/SessionProperties.hpp diff --git a/AusRegEPPTK/session/SessionManagerFactory.d b/AusRegEPPTK/session/SessionManagerFactory.d new file mode 100644 index 0000000..f0fff75 --- /dev/null +++ b/AusRegEPPTK/session/SessionManagerFactory.d @@ -0,0 +1,15 @@ +build/SessionManagerFactory.o session/SessionManagerFactory.d: \ + session/SessionManagerFactory.cpp session/SessionManagerFactory.hpp \ + session/ConfigurationException.hpp common/EPPException.hpp \ + session/EPPIOException.hpp session/SessionManagerProperties.hpp \ + session/SessionPoolProperties.hpp session/SessionProperties.hpp \ + se/CommandType.hpp common/StringUtils.hpp common/Properties.hpp \ + config/config.h session/SessionManager.hpp \ + session/CommandFailedException.hpp common/ErrorPkg.hpp \ + common/ConfigurationError.hpp common/Logger.hpp \ + session/FatalSessionException.hpp \ + session/SessionConfigurationException.hpp \ + session/SessionOpenException.hpp xml/ParsingException.hpp \ + common/IllegalStateException.hpp session/SessionManagerImpl.hpp \ + session/SessionPool.hpp session/EPPInterruptedException.hpp \ + session/Session.hpp diff --git a/AusRegEPPTK/session/SessionManagerImpl.d b/AusRegEPPTK/session/SessionManagerImpl.d new file mode 100644 index 0000000..9411f97 --- /dev/null +++ b/AusRegEPPTK/session/SessionManagerImpl.d @@ -0,0 +1,21 @@ +build/SessionManagerImpl.o session/SessionManagerImpl.d: \ + session/SessionManagerImpl.cpp se/Greeting.hpp se/ReceiveSE.hpp \ + xml/XMLDocument.hpp common/EPPException.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/ConfigurationError.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/IllegalArgException.hpp xml/ParsingException.hpp \ + session/SessionManagerImpl.hpp session/SessionManager.hpp \ + session/CommandFailedException.hpp common/ErrorPkg.hpp \ + session/ConfigurationException.hpp session/FatalSessionException.hpp \ + session/SessionConfigurationException.hpp \ + session/SessionOpenException.hpp session/EPPIOException.hpp \ + session/SessionPool.hpp session/EPPInterruptedException.hpp \ + session/Session.hpp session/SessionPoolImpl.hpp session/StatsViewer.hpp \ + se/CommandType.hpp common/StringUtils.hpp session/SessionFactory.hpp \ + session/Timer.hpp common/ParameterSyntaxException.hpp se/ResultCode.hpp \ + common/AutoMutex.hpp session/SessionManagerProperties.hpp \ + session/SessionPoolProperties.hpp session/SessionProperties.hpp \ + session/Transaction.hpp se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp \ + xml/XMLWriter.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/Response.hpp se/Result.hpp session/StatsManager.hpp \ + session/LoginException.hpp diff --git a/AusRegEPPTK/session/SessionManagerPropertiesImpl.d b/AusRegEPPTK/session/SessionManagerPropertiesImpl.d new file mode 100644 index 0000000..f0ccdc8 --- /dev/null +++ b/AusRegEPPTK/session/SessionManagerPropertiesImpl.d @@ -0,0 +1,6 @@ +build/SessionManagerPropertiesImpl.o session/SessionManagerPropertiesImpl.d: \ + session/SessionManagerPropertiesImpl.cpp \ + session/SessionManagerPropertiesImpl.hpp \ + session/SessionManagerProperties.hpp session/SessionPoolProperties.hpp \ + session/SessionProperties.hpp se/CommandType.hpp common/StringUtils.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp diff --git a/AusRegEPPTK/session/SessionManagerTest.d b/AusRegEPPTK/session/SessionManagerTest.d new file mode 100644 index 0000000..4ee9e0b --- /dev/null +++ b/AusRegEPPTK/session/SessionManagerTest.d @@ -0,0 +1,26 @@ +build/SessionManagerTest.o session/SessionManagerTest.d: \ + session/SessionManagerTest.cpp se/PollRequestCommand.hpp \ + se/PollCommand.hpp xml/XStr.hpp se/Command.hpp se/SendSE.hpp \ + xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \ + common/Properties.hpp config/config.h common/EPPException.hpp \ + common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \ + se/CommandExtension.hpp se/StandardCommandType.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \ + se/PollOperation.hpp common/ErrorPkg.hpp se/PollResponse.hpp \ + se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \ + se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \ + se/Result.hpp se/ContactTransferResponse.hpp se/StandardObjectType.hpp \ + se/ObjectType.hpp se/TransferResponse.hpp se/DataResponse.hpp \ + se/DomainTransferResponse.hpp se/ContactNotificationResponse.hpp \ + se/NotificationResponse.hpp se/DomainNotificationResponse.hpp \ + se/ContactInfoResponse.hpp se/InfoResponse.hpp se/Status.hpp \ + se/DomainInfoResponse.hpp session/Transaction.hpp \ + session/SessionManagerFactory.hpp session/ConfigurationException.hpp \ + session/EPPIOException.hpp session/SessionManagerProperties.hpp \ + session/SessionPoolProperties.hpp session/SessionProperties.hpp \ + session/SessionManager.hpp session/CommandFailedException.hpp \ + session/FatalSessionException.hpp \ + session/SessionConfigurationException.hpp \ + session/SessionOpenException.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp session/TestEnvironment.hpp \ + common/init.hpp common/Test.hpp diff --git a/AusRegEPPTK/session/SessionPoolImpl.d b/AusRegEPPTK/session/SessionPoolImpl.d new file mode 100644 index 0000000..a1bc5ee --- /dev/null +++ b/AusRegEPPTK/session/SessionPoolImpl.d @@ -0,0 +1,16 @@ +build/SessionPoolImpl.o session/SessionPoolImpl.d: \ + session/SessionPoolImpl.cpp session/SessionPoolImpl.hpp \ + session/SessionPool.hpp session/EPPIOException.hpp \ + common/EPPException.hpp session/EPPInterruptedException.hpp \ + session/Session.hpp xml/ParsingException.hpp \ + session/SessionOpenException.hpp \ + session/SessionConfigurationException.hpp session/StatsViewer.hpp \ + se/CommandType.hpp common/StringUtils.hpp \ + session/SessionLimitExceededException.hpp session/LoginException.hpp \ + session/SessionFactory.hpp session/SessionManagerProperties.hpp \ + session/SessionPoolProperties.hpp session/SessionProperties.hpp \ + common/Properties.hpp config/config.h session/StatsManager.hpp \ + session/CommandFailedException.hpp common/ErrorPkg.hpp \ + common/ConfigurationError.hpp common/Logger.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp common/AutoMutex.hpp \ + common/SystemProperties.hpp diff --git a/AusRegEPPTK/session/SessionTest.d b/AusRegEPPTK/session/SessionTest.d new file mode 100644 index 0000000..48c3b7a --- /dev/null +++ b/AusRegEPPTK/session/SessionTest.d @@ -0,0 +1,11 @@ +build/SessionTest.o session/SessionTest.d: session/SessionTest.cpp \ + session/SessionFactory.hpp session/SessionConfigurationException.hpp \ + common/EPPException.hpp session/SessionManagerProperties.hpp \ + session/SessionPoolProperties.hpp session/SessionProperties.hpp \ + se/CommandType.hpp common/StringUtils.hpp common/Properties.hpp \ + config/config.h common/SystemProperties.hpp common/init.hpp \ + session/Session.hpp xml/ParsingException.hpp session/EPPIOException.hpp \ + session/EPPInterruptedException.hpp session/SessionOpenException.hpp \ + session/StatsManager.hpp session/StatsViewer.hpp \ + session/TestEnvironment.hpp se/StandardCommandType.hpp se/EnumType.hpp \ + se/IllegalArgException.hpp common/Test.hpp diff --git a/AusRegEPPTK/session/TLSContext.d b/AusRegEPPTK/session/TLSContext.d new file mode 100644 index 0000000..54a5de4 --- /dev/null +++ b/AusRegEPPTK/session/TLSContext.d @@ -0,0 +1,3 @@ +build/TLSContext.o session/TLSContext.d: session/TLSContext.cpp \ + session/TLSContext.hpp session/TLSSocket.hpp session/SSLException.hpp \ + common/EPPException.hpp common/StringUtils.hpp diff --git a/AusRegEPPTK/session/TLSSession.d b/AusRegEPPTK/session/TLSSession.d new file mode 100644 index 0000000..4fb5ca4 --- /dev/null +++ b/AusRegEPPTK/session/TLSSession.d @@ -0,0 +1,24 @@ +build/TLSSession.o session/TLSSession.d: session/TLSSession.cpp \ + session/TLSSession.hpp session/Session.hpp xml/ParsingException.hpp \ + common/EPPException.hpp session/EPPIOException.hpp \ + session/EPPInterruptedException.hpp session/SessionOpenException.hpp \ + session/SessionConfigurationException.hpp session/StatsManager.hpp \ + session/StatsViewer.hpp se/CommandType.hpp common/StringUtils.hpp \ + session/CommandCounter.hpp session/ResultCounter.hpp xml/XMLParser.hpp \ + xml/XMLDocument.hpp common/IllegalStateException.hpp \ + session/LoginException.hpp session/LogoutException.hpp \ + session/GreetingException.hpp session/SessionLimitExceededException.hpp \ + se/CLTRID.hpp se/PollRequestCommand.hpp se/PollCommand.hpp xml/XStr.hpp \ + se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp xml/XMLWriter.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/ConfigurationError.hpp se/Extension.hpp se/CommandExtension.hpp \ + se/StandardCommandType.hpp se/EnumType.hpp se/IllegalArgException.hpp \ + se/PollOperation.hpp common/ErrorPkg.hpp se/LoginCommand.hpp \ + se/LogoutCommand.hpp se/ReceiveSE.hpp se/Response.hpp \ + se/XMLGregorianCalendar.hpp se/Result.hpp se/ResultCode.hpp \ + session/CertificateUserMismatchException.hpp \ + session/UserPassMismatchException.hpp \ + session/UninitialisedSessionException.hpp session/TLSContext.hpp \ + session/TLSSocket.hpp session/SSLException.hpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp common/AutoMutex.hpp \ + session/SessionProperties.hpp se/Greeting.hpp diff --git a/AusRegEPPTK/session/TLSSocket.d b/AusRegEPPTK/session/TLSSocket.d new file mode 100644 index 0000000..a9a1c8a --- /dev/null +++ b/AusRegEPPTK/session/TLSSocket.d @@ -0,0 +1,3 @@ +build/TLSSocket.o session/TLSSocket.d: session/TLSSocket.cpp \ + session/TLSSocket.hpp session/SSLException.hpp common/EPPException.hpp \ + common/StringUtils.hpp diff --git a/AusRegEPPTK/session/Timer.d b/AusRegEPPTK/session/Timer.d new file mode 100644 index 0000000..8cb5be6 --- /dev/null +++ b/AusRegEPPTK/session/Timer.d @@ -0,0 +1,2 @@ +build/Timer.o session/Timer.d: session/Timer.cpp session/Timer.hpp \ + common/ParameterSyntaxException.hpp common/EPPException.hpp diff --git a/AusRegEPPTK/session/TimerTest.d b/AusRegEPPTK/session/TimerTest.d new file mode 100644 index 0000000..840728b --- /dev/null +++ b/AusRegEPPTK/session/TimerTest.d @@ -0,0 +1,3 @@ +build/TimerTest.o session/TimerTest.d: session/TimerTest.cpp \ + session/Timer.hpp common/ParameterSyntaxException.hpp \ + common/EPPException.hpp common/Test.hpp diff --git a/AusRegEPPTK/session/UserPassMismatchException.d b/AusRegEPPTK/session/UserPassMismatchException.d new file mode 100644 index 0000000..041c0cd --- /dev/null +++ b/AusRegEPPTK/session/UserPassMismatchException.d @@ -0,0 +1,5 @@ +build/UserPassMismatchException.o session/UserPassMismatchException.d: \ + session/UserPassMismatchException.cpp \ + session/UserPassMismatchException.hpp session/LoginException.hpp \ + common/EPPException.hpp common/ErrorPkg.hpp common/Properties.hpp \ + config/config.h common/ConfigurationError.hpp common/Logger.hpp diff --git a/AusRegEPPTK/xml/EPPWriter.d b/AusRegEPPTK/xml/EPPWriter.d new file mode 100644 index 0000000..d9644be --- /dev/null +++ b/AusRegEPPTK/xml/EPPWriter.d @@ -0,0 +1,4 @@ +build/EPPWriter.o xml/EPPWriter.d: xml/EPPWriter.cpp xml/EPPWriter.hpp \ + xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \ + config/config.h common/EPPException.hpp common/ConfigurationError.hpp \ + xml/ParsingException.hpp xml/XStr.hpp xml/XMLInit.hpp diff --git a/AusRegEPPTK/xml/NamespaceResolver.d b/AusRegEPPTK/xml/NamespaceResolver.d new file mode 100644 index 0000000..81dffab --- /dev/null +++ b/AusRegEPPTK/xml/NamespaceResolver.d @@ -0,0 +1,2 @@ +build/NamespaceResolver.o xml/NamespaceResolver.d: \ + xml/NamespaceResolver.cpp xml/NamespaceResolver.hpp diff --git a/AusRegEPPTK/xml/XMLDocument.d b/AusRegEPPTK/xml/XMLDocument.d new file mode 100644 index 0000000..e07426a --- /dev/null +++ b/AusRegEPPTK/xml/XMLDocument.d @@ -0,0 +1,3 @@ +build/XMLDocument.o xml/XMLDocument.d: xml/XMLDocument.cpp \ + common/StringUtils.hpp xml/XMLDocument.hpp common/EPPException.hpp \ + xml/XMLInit.hpp xml/NamespaceResolver.hpp diff --git a/AusRegEPPTK/xml/XMLParser.d b/AusRegEPPTK/xml/XMLParser.d new file mode 100644 index 0000000..b8928ff --- /dev/null +++ b/AusRegEPPTK/xml/XMLParser.d @@ -0,0 +1,5 @@ +build/XMLParser.o xml/XMLParser.d: xml/XMLParser.cpp \ + xml/NamespaceResolver.hpp xml/XMLParser.hpp xml/ParsingException.hpp \ + common/EPPException.hpp xml/XMLDocument.hpp xml/XMLInit.hpp xml/XStr.hpp \ + common/SystemProperties.hpp common/Properties.hpp config/config.h \ + common/Logger.hpp common/ConfigurationError.hpp diff --git a/AusRegEPPTK/xml/XMLWriter.d b/AusRegEPPTK/xml/XMLWriter.d new file mode 100644 index 0000000..1120781 --- /dev/null +++ b/AusRegEPPTK/xml/XMLWriter.d @@ -0,0 +1,5 @@ +build/XMLWriter.o xml/XMLWriter.d: xml/XMLWriter.cpp xml/XMLWriter.hpp \ + common/Logger.hpp common/Properties.hpp config/config.h \ + common/EPPException.hpp common/ConfigurationError.hpp xml/XStr.hpp \ + xml/XMLParser.hpp xml/ParsingException.hpp xml/XMLDocument.hpp \ + common/SystemProperties.hpp