libwinpr-dsparse: initial commit
This commit is contained in:
parent
630affb47c
commit
fb4df9f731
60
include/winpr/dsparse.h
Normal file
60
include/winpr/dsparse.h
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
/**
|
||||||
|
* WinPR: Windows Portable Runtime
|
||||||
|
* Active Directory Domain Services Parsing Functions
|
||||||
|
*
|
||||||
|
* Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef WINPR_DSPARSE_H
|
||||||
|
#define WINPR_DSPARSE_H
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
|
|
||||||
|
#include <winpr/windows.h>
|
||||||
|
#include <ntdsapi.h>
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
|
#include <winpr/crt.h>
|
||||||
|
#include <winpr/winpr.h>
|
||||||
|
#include <winpr/wtypes.h>
|
||||||
|
|
||||||
|
WINPR_API DWORD DsCrackSpnW(LPCWSTR pszSpn, DWORD* pcServiceClass, LPWSTR ServiceClass, DWORD* pcServiceName,
|
||||||
|
LPWSTR ServiceName, DWORD* pcInstanceName, LPWSTR InstanceName, USHORT* pInstancePort);
|
||||||
|
|
||||||
|
WINPR_API DWORD DsCrackSpnA(LPCSTR pszSpn, LPDWORD pcServiceClass, LPSTR ServiceClass, LPDWORD pcServiceName,
|
||||||
|
LPSTR ServiceName, LPDWORD pcInstanceName, LPSTR InstanceName, USHORT* pInstancePort);
|
||||||
|
|
||||||
|
#ifdef UNICODE
|
||||||
|
#define DsCrackSpn DsCrackSpnW
|
||||||
|
#else
|
||||||
|
#define DsCrackSpn DsCrackSpnA
|
||||||
|
#endif
|
||||||
|
|
||||||
|
WINPR_API DWORD DsMakeSpnW(LPCWSTR ServiceClass, LPCWSTR ServiceName, LPCWSTR InstanceName,
|
||||||
|
USHORT InstancePort, LPCWSTR Referrer, DWORD* pcSpnLength, LPWSTR pszSpn);
|
||||||
|
|
||||||
|
WINPR_API DWORD DsMakeSpnA(LPCSTR ServiceClass, LPCSTR ServiceName, LPCSTR InstanceName,
|
||||||
|
USHORT InstancePort, LPCSTR Referrer, DWORD* pcSpnLength, LPSTR pszSpn);
|
||||||
|
|
||||||
|
#ifdef UNICODE
|
||||||
|
#define DsMakeSpn DsMakeSpnW
|
||||||
|
#else
|
||||||
|
#define DsMakeSpn DsMakeSpnA
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* WINPR_DSPARSE_H */
|
@ -24,6 +24,7 @@ add_subdirectory(handle)
|
|||||||
add_subdirectory(synch)
|
add_subdirectory(synch)
|
||||||
add_subdirectory(sysinfo)
|
add_subdirectory(sysinfo)
|
||||||
add_subdirectory(bcrypt)
|
add_subdirectory(bcrypt)
|
||||||
|
add_subdirectory(dsparse)
|
||||||
add_subdirectory(rpc)
|
add_subdirectory(rpc)
|
||||||
add_subdirectory(sspi)
|
add_subdirectory(sspi)
|
||||||
add_subdirectory(registry)
|
add_subdirectory(registry)
|
||||||
|
28
winpr/dsparse/CMakeLists.txt
Normal file
28
winpr/dsparse/CMakeLists.txt
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
# WinPR: Windows Portable Runtime
|
||||||
|
# libwinpr-dsparse cmake build script
|
||||||
|
#
|
||||||
|
# Copyright 2011 O.S. Systems Software Ltda.
|
||||||
|
# Copyright 2011 Otavio Salvador <otavio@ossystems.com.br>
|
||||||
|
# Copyright 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
|
set(WINPR_DSPARSE_SRCS
|
||||||
|
dsparse.c)
|
||||||
|
|
||||||
|
add_library(winpr-dsparse ${WINPR_DSPARSE_SRCS})
|
||||||
|
|
||||||
|
set_target_properties(winpr-dsparse PROPERTIES VERSION ${FREERDP_VERSION_FULL} SOVERSION ${FREERDP_VERSION} PREFIX "lib")
|
||||||
|
|
||||||
|
install(TARGETS winpr-dsparse DESTINATION ${CMAKE_INSTALL_LIBDIR})
|
||||||
|
|
68
winpr/dsparse/dsparse.c
Normal file
68
winpr/dsparse/dsparse.c
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
/**
|
||||||
|
* WinPR: Windows Portable Runtime
|
||||||
|
* Active Directory Domain Services Parsing Functions
|
||||||
|
*
|
||||||
|
* Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <winpr/dsparse.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* dsparse.dll:
|
||||||
|
*
|
||||||
|
* DsCrackSpnA
|
||||||
|
* DsCrackSpnW
|
||||||
|
* DsCrackUnquotedMangledRdnA
|
||||||
|
* DsCrackUnquotedMangledRdnW
|
||||||
|
* DsGetRdnW
|
||||||
|
* DsIsMangledDnA
|
||||||
|
* DsIsMangledDnW
|
||||||
|
* DsIsMangledRdnValueA
|
||||||
|
* DsIsMangledRdnValueW
|
||||||
|
* DsMakeSpnA
|
||||||
|
* DsMakeSpnW
|
||||||
|
* DsQuoteRdnValueA
|
||||||
|
* DsQuoteRdnValueW
|
||||||
|
* DsUnquoteRdnValueA
|
||||||
|
* DsUnquoteRdnValueW
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _WIN32
|
||||||
|
|
||||||
|
DWORD DsCrackSpnW(LPCWSTR pszSpn, DWORD* pcServiceClass, LPWSTR ServiceClass, DWORD* pcServiceName,
|
||||||
|
LPWSTR ServiceName, DWORD* pcInstanceName, LPWSTR InstanceName, USHORT* pInstancePort)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
DWORD DsCrackSpnA(LPCSTR pszSpn, LPDWORD pcServiceClass, LPSTR ServiceClass, LPDWORD pcServiceName,
|
||||||
|
LPSTR ServiceName, LPDWORD pcInstanceName, LPSTR InstanceName, USHORT* pInstancePort)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
DWORD DsMakeSpnW(LPCWSTR ServiceClass, LPCWSTR ServiceName, LPCWSTR InstanceName,
|
||||||
|
USHORT InstancePort, LPCWSTR Referrer, DWORD* pcSpnLength, LPWSTR pszSpn)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
DWORD DsMakeSpnA(LPCSTR ServiceClass, LPCSTR ServiceName, LPCSTR InstanceName,
|
||||||
|
USHORT InstancePort, LPCSTR Referrer, DWORD* pcSpnLength, LPSTR pszSpn)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in New Issue
Block a user