diff options
author | Robert Greig <rgreig@apache.org> | 2007-01-08 11:21:18 +0000 |
---|---|---|
committer | Robert Greig <rgreig@apache.org> | 2007-01-08 11:21:18 +0000 |
commit | 4b046df9a21bccd2d97bfcbfcb5106ce1435f409 (patch) | |
tree | 21c8f5ca952e30c47c66ae95e2649ce8db288af9 | |
parent | 3bea5ce7a5245c6e9a928033797a3c0b05307360 (diff) | |
download | qpid-python-4b046df9a21bccd2d97bfcbfcb5106ce1435f409.tar.gz |
Qpid-250.diff patch applied. Fixes the build to generate the framing layer from the defintive 0.8 spec in the /specs directory.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@494031 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | dotnet/Qpid.Client/Client/AmqChannel.cs | 2 | ||||
-rw-r--r-- | dotnet/Qpid.Common/Qpid.Common.csproj | 2 | ||||
-rw-r--r-- | dotnet/Qpid.Common/build.xml | 3 |
3 files changed, 4 insertions, 3 deletions
diff --git a/dotnet/Qpid.Client/Client/AmqChannel.cs b/dotnet/Qpid.Client/Client/AmqChannel.cs index d6557a8ee5..ab598b4b27 100644 --- a/dotnet/Qpid.Client/Client/AmqChannel.cs +++ b/dotnet/Qpid.Client/Client/AmqChannel.cs @@ -756,7 +756,7 @@ namespace Qpid.Client AMQFrame basicConsume = BasicConsumeBody.CreateAMQFrame(_channelId, 0, queueName, tag, noLocal, acknowledgeMode == AcknowledgeMode.NoAcknowledge, - exclusive, true); + exclusive, true, new FieldTable()); _replayFrames.Add(basicConsume); diff --git a/dotnet/Qpid.Common/Qpid.Common.csproj b/dotnet/Qpid.Common/Qpid.Common.csproj index 65d0d87559..0e32e3ba17 100644 --- a/dotnet/Qpid.Common/Qpid.Common.csproj +++ b/dotnet/Qpid.Common/Qpid.Common.csproj @@ -110,6 +110,8 @@ <Compile Include="generated\DtxSelectOkBody.cs" />
<Compile Include="generated\DtxStartBody.cs" />
<Compile Include="generated\DtxStartOkBody.cs" />
+ <Compile Include="generated\ExchangeBoundBody.cs" />
+ <Compile Include="generated\ExchangeBoundOkBody.cs" />
<Compile Include="generated\ExchangeDeclareBody.cs" />
<Compile Include="generated\ExchangeDeclareOkBody.cs" />
<Compile Include="generated\ExchangeDeleteBody.cs" />
diff --git a/dotnet/Qpid.Common/build.xml b/dotnet/Qpid.Common/build.xml index e976859b15..b6a8fb63b9 100644 --- a/dotnet/Qpid.Common/build.xml +++ b/dotnet/Qpid.Common/build.xml @@ -21,8 +21,7 @@ <pathconvert targetos="unix" property="amq.home.fixed" refid="amq.home.path"/> <!-- Some spec changes break the build, reverting to private copy in Qpid.Common temporarily till this is fixed. --> -<!-- <property name="amq.asl" value="${amq.home.fixed}/specs/amqp.0-8.xml"/> --> - <property name="amq.asl" value="amqp.xml"/> + <property name="amq.asl" value="${amq.home.fixed}/specs/amqp.0-8.xml"/> <target name="clean" description="Deletes the generated sources."> <delete> |