Below query is more of a process related. Wanted to know what is the process of such change and also the legal part of it if I just change it in my local and package the dll to my software.
---------- Forwarded message ----------
From:
Nilanjan Dutta <nilanjan.dutta.india@gmail.com>Date: Mon, Sep 29, 2014 at 1:35 PM
Subject: Changing the C# BasexClient.cs
To:
basex-talk@mailman.uni-konstanz.deHi All,
I want to change/overload the implementation private void Send (Stream s)
Existing implementation:
private void Send(Stream s) |
| { |
| while (true) |
| { |
| int t = s.ReadByte(); |
| if (t == -1) break; |
| if (t == 0x00 || t == 0xFF) stream.WriteByte(Convert.ToByte(0xFF)); |
| stream.WriteByte(Convert.ToByte(t)); |
| } |
| stream.WriteByte(0); |
| info = Receive(); |
| if(!Ok()) |
| { |
| throw new IOException(info); |
| } |
| } |

This one is faster for my use case. Please do let me know how can this be done?