Displaying 3 results from an estimated 3 matches for "isanonymous".
Did you mean:
anonymous
2013 Jan 11
1
[LLVMdev] SMFixIt helps break TableGen in Trunk
...; 'llvm::Record *const' to 'const llvm::SMRange &' for 1st argument
> class SMRange {
> ^
> /home/mdriftmeyer/DeveloperProjects/LLVMProject/trunk/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp:187:16:
> error:
> no member named 'isAnonymous' in 'llvm::Record'
> if (Group->isAnonymous()) {
> ~~~~~ ^
> /home/mdriftmeyer/DeveloperProjects/LLVMProject/trunk/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp:242:9:
> error:
> unknown type name 'SMFixIt'
> SMFixIt...
2019 Jan 14
0
SMB3.11 and receiving NT_STATUS_SMB_BAD_CLUSTER_DIALECT
..._CONNECT Request
When the server receives a request with an SMB2 header with a Command value equal to SMB2 TREE_CONNECT, message handling proceeds as follows:
The server MUST locate the authenticated session, as specified in section 3.3.5.2.9.
If Connection.Dialect is "3.1.1" and Session.IsAnonymous and Session.IsGuest are set to FALSE and the request is not signed or not encrypted, then the server MUST disconnect the connection.
The server MUST parse the Unicode string in the Buffer field, specified by PathOffset and PathLength fields, to extract the hostname and sharename components, as spec...
2011 Aug 12
0
[LLVMdev] Minor API change coming
Per the "type system rewrite terminology" thread, I've gone through and renamed two method families:
StructType::isAnonymous() -> StructType::isLiteral()
StructType::createNamed() -> StructType::create()
"create" also takes the arguments in slightly different order (name after elements).
I've updated clang/llvm-gcc/dragonegg. To avoid breaking the world all at once, I left the old APIs in for now,...