-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HEAD:(zeroc-ice/ice@e5dd5702f3) Fix colloc and IPv6 (zeroc-ice/ice#3161)
- Loading branch information
0 parents
commit 4bc9660
Showing
14,195 changed files
with
3,484,390 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// | ||
// Copyright (c) ZeroC, Inc. All rights reserved. | ||
// | ||
// | ||
// Ice version 3.8.0-alpha.0 | ||
// | ||
// <auto-generated> | ||
// | ||
// Generated from file `DBTypes.ice' | ||
// | ||
// Warning: do not edit this file. | ||
// | ||
// </auto-generated> | ||
// | ||
|
||
#define ICE_BUILDING_GENERATED_CODE | ||
#include "DBTypes.h" | ||
#include <Ice/AsyncResponseHandler.h> | ||
#include <Ice/FactoryTable.h> | ||
#include <Ice/OutgoingAsync.h> | ||
|
||
#if defined(_MSC_VER) | ||
# pragma warning(disable : 4458) // declaration of ... hides class member | ||
# pragma warning(disable : 4996) // ... was declared deprecated | ||
#elif defined(__clang__) | ||
# pragma clang diagnostic ignored "-Wshadow" | ||
# pragma clang diagnostic ignored "-Wdeprecated-declarations" | ||
#elif defined(__GNUC__) | ||
# pragma GCC diagnostic ignored "-Wshadow" | ||
# pragma GCC diagnostic ignored "-Wdeprecated-declarations" | ||
#endif | ||
|
||
#ifndef ICE_IGNORE_VERSION | ||
# if ICE_INT_VERSION != 30850 | ||
# error Ice version mismatch: an exact match is required for beta generated code | ||
# endif | ||
#endif | ||
|
||
namespace | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
// | ||
// Copyright (c) ZeroC, Inc. All rights reserved. | ||
// | ||
// | ||
// Ice version 3.8.0-alpha.0 | ||
// | ||
// <auto-generated> | ||
// | ||
// Generated from file `DBTypes.ice' | ||
// | ||
// Warning: do not edit this file. | ||
// | ||
// </auto-generated> | ||
// | ||
|
||
#ifndef __DBTypes_h__ | ||
#define __DBTypes_h__ | ||
|
||
#include <Ice/PushDisableWarnings.h> | ||
#include <Ice/Ice.h> | ||
#include "SubscriberRecord.h" | ||
#include "LLURecord.h" | ||
|
||
#ifndef ICE_IGNORE_VERSION | ||
# if ICE_INT_VERSION != 30850 | ||
# error Ice version mismatch: an exact match is required for beta generated code | ||
# endif | ||
#endif | ||
|
||
namespace IceStormElection | ||
{ | ||
using StringLogUpdateDict = ::std::map<::std::string, LogUpdate>; | ||
|
||
} | ||
|
||
namespace IceStorm | ||
{ | ||
using SubscriberRecordDict = ::std::map<SubscriberRecordKey, SubscriberRecord>; | ||
|
||
struct AllData; | ||
|
||
} | ||
|
||
namespace IceStorm | ||
{ | ||
|
||
struct AllData | ||
{ | ||
::IceStormElection::StringLogUpdateDict llus; | ||
::IceStorm::SubscriberRecordDict subscribers; | ||
|
||
/** | ||
* Obtains a tuple containing all of the struct's data members. | ||
* @return The data members in a tuple. | ||
*/ | ||
std::tuple<const ::IceStormElection::StringLogUpdateDict&, const ::IceStorm::SubscriberRecordDict&> ice_tuple() const | ||
{ | ||
return std::tie(llus, subscribers); | ||
} | ||
}; | ||
|
||
using Ice::Tuple::operator<; | ||
using Ice::Tuple::operator<=; | ||
using Ice::Tuple::operator>; | ||
using Ice::Tuple::operator>=; | ||
using Ice::Tuple::operator==; | ||
using Ice::Tuple::operator!=; | ||
|
||
} | ||
|
||
/// \cond STREAM | ||
namespace Ice | ||
{ | ||
|
||
template<> | ||
struct StreamableTraits<::IceStorm::AllData> | ||
{ | ||
static const StreamHelperCategory helper = StreamHelperCategoryStruct; | ||
static const int minWireSize = 2; | ||
static const bool fixedLength = false; | ||
}; | ||
|
||
template<> | ||
struct StreamReader<::IceStorm::AllData> | ||
{ | ||
static void read(InputStream* istr, ::IceStorm::AllData& v) | ||
{ | ||
istr->readAll(v.llus, v.subscribers); | ||
} | ||
}; | ||
|
||
} | ||
/// \endcond | ||
|
||
#include <Ice/PopDisableWarnings.h> | ||
#endif |
Oops, something went wrong.