Re: Lwip 2.0.3 patches

2018-04-30 Thread Samuel Thibault
Samuel Thibault, le mar. 01 mai 2018 01:34:42 +0200, a ecrit: > > - Won't get to upstream > > posix > > Similarly, why not? If they really don't want it, we definitely should make this patch more maitainable by avoiding to move code around, and instead put #ifdef #endif around, so that changes

Re: Lwip 2.0.3 patches

2018-04-30 Thread Samuel Thibault
Hello, Joan Lledó, le lun. 30 avril 2018 13:11:11 +0200, a ecrit: > I've been working on the lwip package and have some patches for the release > 2.0.3. These patches include: Thanks! I have applied them and fixed the build on Linux. > About patches getting to upstream: > - Not intended to be

[PATCH 5/7] POLL: New patch implementing poll()

2018-04-30 Thread Joan Lledó
--- debian/patches/poll | 518 1 file changed, 518 insertions(+) create mode 100644 debian/patches/poll diff --git a/debian/patches/poll b/debian/patches/poll new file mode 100644 index 000..b85ae06 --- /dev/null +++ b/debian/patches/poll

[PATCH 6/7] MAX_SOCKETS: New patch implementing unlimited number of sockets

2018-04-30 Thread Joan Lledó
--- debian/patches/max_sockets | 247 + 1 file changed, 247 insertions(+) create mode 100644 debian/patches/max_sockets diff --git a/debian/patches/max_sockets b/debian/patches/max_sockets new file mode 100644 index 000..bdc7293 --- /dev/null +++

[PATCH 2/7] POSIX: Allow enabling/disabling POSIX sockets

2018-04-30 Thread Joan Lledó
--- debian/patches/posix | 1830 ++ 1 file changed, 1562 insertions(+), 268 deletions(-) diff --git a/debian/patches/posix b/debian/patches/posix index ef83cc7..b86452d 100644 --- a/debian/patches/posix +++ b/debian/patches/posix @@ -1,29 +1,222 @@

[PATCH 4/7] BUG-36167: Implement the upstream solution

2018-04-30 Thread Joan Lledó
--- debian/patches/bug-36167 | 35 --- 1 file changed, 20 insertions(+), 15 deletions(-) diff --git a/debian/patches/bug-36167 b/debian/patches/bug-36167 index 4a7cd42..6d12e93 100644 --- a/debian/patches/bug-36167 +++ b/debian/patches/bug-36167 @@ -1,22 +1,27 @@

[PATCH 7/7] Update series file

2018-04-30 Thread Joan Lledó
--- debian/patches/series | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/debian/patches/series b/debian/patches/series index 215fefd..7d92024 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,5 +1,7 @@ -bug-36167 --binary port -autoconf -errno

[PATCH 1/7] PORT: Solved some bugs on timed waits

2018-04-30 Thread Joan Lledó
--- debian/patches/port | 60 - 1 file changed, 23 insertions(+), 37 deletions(-) diff --git a/debian/patches/port b/debian/patches/port index 1a3a71f..92fffb3 100644 --- a/debian/patches/port +++ b/debian/patches/port @@ -1,8 +1,6 @@ -Index:

[PATCH 3/7] AUTOCONF: Adapt the patch to its new position in series

2018-04-30 Thread Joan Lledó
--- debian/patches/autoconf | 164 ++-- 1 file changed, 90 insertions(+), 74 deletions(-) diff --git a/debian/patches/autoconf b/debian/patches/autoconf index aae4ac5..b305e40 100644 --- a/debian/patches/autoconf +++ b/debian/patches/autoconf @@ -1,45

Lwip 2.0.3 patches

2018-04-30 Thread Joan Lledó
Hello, I've been working on the lwip package and have some patches for the release 2.0.3. These patches include: - Solve some bugs on the PORT patch. - Create a new macro wich allows the user to choose between POSIX or lwip native socket headers. - Solve the bug 36167 using the same solution