platform/upstream/libwebsockets.git
8 years agowhitespace trailing mass cleanout
Andy Green [Mon, 14 Dec 2015 00:52:03 +0000 (08:52 +0800)]
whitespace trailing mass cleanout

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agolibev take care about const context where possible
Andy Green [Sun, 13 Dec 2015 23:51:15 +0000 (07:51 +0800)]
libev take care about const context where possible

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agochangelog update file api about wsi
Andy Green [Sun, 13 Dec 2015 23:21:42 +0000 (07:21 +0800)]
changelog update file api about wsi

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agointroduce lws_wsi_user
Andy Green [Sun, 13 Dec 2015 23:16:32 +0000 (07:16 +0800)]
introduce lws_wsi_user

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agochangelog explain protocols related api changes
Andy Green [Sun, 13 Dec 2015 23:02:51 +0000 (07:02 +0800)]
changelog explain protocols related api changes

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agolws_plat_fd add wsi to fops and helpers
Andy Green [Fri, 11 Dec 2015 05:12:58 +0000 (13:12 +0800)]
lws_plat_fd add wsi to fops and helpers

Having the lws_context alone doesn't let us track state or act different
by wsi, which is the most interesting usecase.  Eg not only simply track
file position / decompression state per wsi but also act differently
according to wsi authentication state / associated cookies.

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agomake protocols const require explicit context API BREAK
Andy Green [Fri, 11 Dec 2015 02:45:35 +0000 (10:45 +0800)]
make protocols const require explicit context API BREAK

The user protocols struct has not been const until now.

This has been painful for a while because the semantics of the protocols
struct look like it's going to be treated as const.

At context creation, the protocols struct has been getting marked with the context,
and three apis exploited that to only need to be passed a pointer to a protocol to
get access to the context.

This patch removes the two writeable members in the context (these were never directly
used by user code), changes all pointers to protocols to be const, and adds an explicit
first argument to the three affected apis so they can have access to context.

The three affected apis are these

 LWS_VISIBLE LWS_EXTERN int
-lws_callback_on_writable_all_protocol(const struct lws_protocols *protocol);
+lws_callback_on_writable_all_protocol(const struct lws_context *context,
+                                     const struct lws_protocols *protocol);

 LWS_VISIBLE LWS_EXTERN int
-lws_callback_all_protocol(const struct lws_protocols *protocol, int reason);
+lws_callback_all_protocol(struct lws_context *context,
+                         const struct lws_protocols *protocol, int reason);

 LWS_VISIBLE LWS_EXTERN void
-lws_rx_flow_allow_all_protocol(const struct lws_protocols *protocol);
+lws_rx_flow_allow_all_protocol(const struct lws_context *context,
+                              const struct lws_protocols *protocol);

unfortunately the original apis can no longer be emulated and users of them must update.

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agolws_get_ctx conversion
Andy Green [Fri, 11 Dec 2015 01:36:14 +0000 (09:36 +0800)]
lws_get_ctx conversion

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agowin open flags 3 lsb are not bitfields
Andy Green [Sun, 13 Dec 2015 22:40:53 +0000 (06:40 +0800)]
win open flags 3 lsb are not bitfields

https://github.com/warmcat/libwebsockets/issues/367

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoRevert using AI_V4MAPPED flag to getaddrinfo for Android
Yusuke Ishiguro [Fri, 11 Dec 2015 09:10:02 +0000 (18:10 +0900)]
Revert using AI_V4MAPPED flag to getaddrinfo for Android

Because getaddrinfo will return error on Android when
AI_V4MAPPED is specified. So we should use old implemntation.
Android support of IPv6 is very poor.

8 years agowindows fcntl.h
Andy Green [Thu, 10 Dec 2015 05:21:07 +0000 (13:21 +0800)]
windows fcntl.h

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoLWS_O_RDONLY to hide perversions
Andy Green [Thu, 10 Dec 2015 05:03:10 +0000 (13:03 +0800)]
LWS_O_RDONLY to hide perversions

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoosx fix unsigned signed compare error 2
Andy Green [Thu, 10 Dec 2015 05:00:15 +0000 (13:00 +0800)]
osx fix unsigned signed compare error 2

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agowindows use right perversion flgs
Andy Green [Thu, 10 Dec 2015 04:56:46 +0000 (12:56 +0800)]
windows use right perversion flgs

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoosx fix unsigned signed compare error
Andy Green [Thu, 10 Dec 2015 04:50:10 +0000 (12:50 +0800)]
osx fix unsigned signed compare error

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agolws_plat_fd implement platform default handlers
Andy Green [Wed, 9 Dec 2015 23:58:58 +0000 (07:58 +0800)]
lws_plat_fd implement platform default handlers

This is a rewrite of the patch from Soapyman here

https://github.com/warmcat/libwebsockets/pull/363

The main changes compared to Soapyman's original patch are

 - There's no new stuff in the info struct user code does any overrides
   it may want to do explicitly after lws_context_create returns

 - User overrides for file ops can call through (subclass) to the original
   platform implementation using lws_get_fops_plat()

 - A typedef is provided for plat-specific fd type

 - Public helpers are provided to allow user code to be platform-independent
   about file access, using the lws platform file operations underneath:

static inline lws_filefd_type
lws_plat_file_open(struct lws_plat_file_ops *fops, const char *filename,
   unsigned long *filelen, int flags)

static inline int
lws_plat_file_close(struct lws_plat_file_ops *fops, lws_filefd_type fd)

static inline unsigned long
lws_plat_file_seek_cur(struct lws_plat_file_ops *fops, lws_filefd_type fd,
       long offset_from_cur_pos)

static inline int
lws_plat_file_read(struct lws_plat_file_ops *fops, lws_filefd_type fd,
   unsigned long *amount, unsigned char *buf, unsigned long len)

static inline int
lws_plat_file_write(struct lws_plat_file_ops *fops, lws_filefd_type fd,
    unsigned long *amount, unsigned char *buf, unsigned long len)

There's example documentation and implementation in the test server.

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agolws_plat_fd introduce struct
SoapyMan [Wed, 9 Dec 2015 23:52:31 +0000 (07:52 +0800)]
lws_plat_fd introduce struct

Originally from

https://github.com/warmcat/libwebsockets/pull/363

Modified by AG to change the emphasis to exporting lws plat
handlers for use by the user code portably

8 years agotest client remove spamming delays
Andy Green [Thu, 10 Dec 2015 03:01:20 +0000 (11:01 +0800)]
test client remove spamming delays

Chrome seems to be able to deal with this (or my machine is now
muscular enough it doesn't care, anyway)

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoclean comment style in libwebsockets.h
Andy Green [Wed, 9 Dec 2015 23:50:51 +0000 (07:50 +0800)]
clean comment style in libwebsockets.h

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoarmour libwebsockets.h also put notices on abi structs in there
Andy Green [Wed, 9 Dec 2015 23:24:20 +0000 (07:24 +0800)]
armour libwebsockets.h also put notices on abi structs in there

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoplat combine inits into single lws_plat_init and provide info
Andy Green [Wed, 9 Dec 2015 23:14:16 +0000 (07:14 +0800)]
plat combine inits into single lws_plat_init and provide info

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoSubject: [PATCH] fixed not to use IPv4-mapped address for IPv6 only node
Yusuke Ishiguro [Wed, 9 Dec 2015 10:24:44 +0000 (19:24 +0900)]
Subject: [PATCH] fixed not to use IPv4-mapped address for IPv6 only node

Since IPv6 only node can not connect with IPv4-mapped address.

8 years agotest client bit more cleaning
Andy Green [Wed, 9 Dec 2015 00:07:38 +0000 (08:07 +0800)]
test client bit more cleaning

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoAccess to wsi->ssl at LWS_CALLBACK_ESTABLISHED
Alexander Bruines [Tue, 8 Dec 2015 22:31:37 +0000 (23:31 +0100)]
Access to wsi->ssl at LWS_CALLBACK_ESTABLISHED

8 years agotest client reconnect if server disappears
Andy Green [Tue, 8 Dec 2015 23:10:03 +0000 (07:10 +0800)]
test client reconnect if server disappears

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agofixed to initialize sockaddr_in6 by zero
Yusuke Ishiguro [Tue, 8 Dec 2015 10:57:19 +0000 (19:57 +0900)]
fixed to initialize sockaddr_in6 by zero

Some environment has field of sin6_scope_id inside sockaddr_in6
and it should be set to zero.

8 years agosoname bump
Andy Green [Tue, 8 Dec 2015 03:06:28 +0000 (11:06 +0800)]
soname bump

See

http://ml.libwebsockets.org/pipermail/libwebsockets/2015-December/002052.html

for the reason

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoarmour libwebsockets.h against careless enum changes affecting abi
Andy Green [Tue, 8 Dec 2015 03:04:19 +0000 (11:04 +0800)]
armour libwebsockets.h against careless enum changes affecting abi

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agocmake additionally install cmake config
Charles Prevot [Tue, 8 Dec 2015 02:26:57 +0000 (10:26 +0800)]
cmake additionally install cmake config

8 years agocoverity 155650 medium possible write to null pointer
Andy Green [Sun, 6 Dec 2015 03:07:41 +0000 (11:07 +0800)]
coverity 155650 medium possible write to null pointer

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agocoverity 155649 medium possible write to null pointer
Andy Green [Sun, 6 Dec 2015 03:04:05 +0000 (11:04 +0800)]
coverity 155649 medium possible write to null pointer

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agocoverity 155648 low dead code daemonize disabled
Andy Green [Sun, 6 Dec 2015 03:00:36 +0000 (11:00 +0800)]
coverity 155648 low dead code daemonize disabled

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agotravis coverity update
Andy Green [Sun, 6 Dec 2015 02:43:02 +0000 (10:43 +0800)]
travis coverity update

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoclean more whitespace 5
Andy Green [Sun, 6 Dec 2015 02:05:37 +0000 (10:05 +0800)]
clean more whitespace 5

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoclean more whitespace 4
Andy Green [Sun, 6 Dec 2015 01:15:27 +0000 (09:15 +0800)]
clean more whitespace 4

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoclean more whitespace 3
Andy Green [Sun, 6 Dec 2015 00:40:00 +0000 (08:40 +0800)]
clean more whitespace 3

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoclean reduce windows build warnings
Andy Green [Sun, 6 Dec 2015 00:00:03 +0000 (08:00 +0800)]
clean reduce windows build warnings

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agomore server close processing error handling precisions
Andy Green [Sat, 5 Dec 2015 22:39:51 +0000 (06:39 +0800)]
more server close processing error handling precisions

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoserver socket service close when detected do right thing
Andy Green [Sat, 5 Dec 2015 21:55:52 +0000 (05:55 +0800)]
server socket service close when detected do right thing

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoclean more whitespace 2
Andy Green [Sat, 5 Dec 2015 21:52:09 +0000 (05:52 +0800)]
clean more whitespace 2

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoclean more whitespace
Andy Green [Sat, 5 Dec 2015 13:51:47 +0000 (21:51 +0800)]
clean more whitespace

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoserver socket service close fix fail detect
Andy Green [Sat, 5 Dec 2015 13:52:16 +0000 (21:52 +0800)]
server socket service close fix fail detect

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agowindows align lws_service_fd return processing with unix
Andy Green [Sat, 5 Dec 2015 01:38:50 +0000 (09:38 +0800)]
windows align lws_service_fd return processing with unix

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agocleanups after api changes and mbed update
Andy Green [Fri, 4 Dec 2015 08:54:12 +0000 (16:54 +0800)]
cleanups after api changes and mbed update

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoattack.sh update for test server changes
Andy Green [Fri, 4 Dec 2015 04:04:59 +0000 (12:04 +0800)]
attack.sh update for test server changes

Currently he can survive all the tests correctly

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agofix Uri Args header name
Andy Green [Fri, 4 Dec 2015 03:57:48 +0000 (11:57 +0800)]
fix Uri Args header name

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoapi rationalization fix replaces in compatibility defines
Andy Green [Fri, 4 Dec 2015 03:34:49 +0000 (11:34 +0800)]
api rationalization fix replaces in compatibility defines

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoclean tidy the worst whitespace alignment probs due to mass token name length changes
Andy Green [Fri, 4 Dec 2015 03:30:53 +0000 (11:30 +0800)]
clean tidy the worst whitespace alignment probs due to mass token name length changes

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoapi rationalization: eliminate all libwebsocket[s]_ prefixes
Andy Green [Fri, 4 Dec 2015 03:08:32 +0000 (11:08 +0800)]
api rationalization: eliminate all libwebsocket[s]_ prefixes

This nukes all the oldstyle prefixes except in the compatibility code.

struct libwebsockets becomes struct lws too.

The api docs are updated accordingly as are the READMEs that mention
those apis.

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoapi rationalization add cmake switch to export old api wrappers
Andy Green [Fri, 4 Dec 2015 02:39:23 +0000 (10:39 +0800)]
api rationalization add cmake switch to export old api wrappers

This is off by default, use

 -D LWS_WITH_OLD_API_WRAPPERS=1

on cmake to get the old api names exported from the library as wrappers
around the new api names.

This allows the library to continue to be compatible with apps that are
not rebuilt with the new libwebsockets.h api compatibility defines.

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoapi rationalization eliminate oldstyle internal api names
Andy Green [Fri, 4 Dec 2015 01:23:56 +0000 (09:23 +0800)]
api rationalization eliminate oldstyle internal api names

Between changing to lws_ a few years ago and the previous two
patches migrating the public apis, there are only a few
internal functions left using libwebsocket_*.

Change those to also use lws_ without regard to compatibility
since they were never visible outside the library.

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoapi rationalization use new names internally
Andy Green [Fri, 4 Dec 2015 00:43:54 +0000 (08:43 +0800)]
api rationalization use new names internally

Change all internal uses of rationalized public apis to reflect the
new names.

Theer are a few things that got changed as side effect of search/replace
matches, but these are almost all internal.  I added a compatibility define
for the public enum that got renamed.

Theoretically existing code should not notice the difference from these
two patches.  And new code will find the new names.

https://github.com/warmcat/libwebsockets/issues/357

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoapi rationalization: introduce public api compatibility defines
Andy Green [Thu, 3 Dec 2015 23:55:17 +0000 (07:55 +0800)]
api rationalization: introduce public api compatibility defines

Just this is enough to be buildable and allow usage of new defines
for the public api.

https://github.com/warmcat/libwebsockets/issues/357

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoassert.h move to private header
Andy Green [Thu, 3 Dec 2015 23:22:44 +0000 (07:22 +0800)]
assert.h move to private header

https://github.com/warmcat/libwebsockets/issues/356

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoFix some minor typos.
Peter Pentchev [Thu, 3 Dec 2015 13:55:11 +0000 (15:55 +0200)]
Fix some minor typos.

8 years agossl zero return indicates shutdown
Andy Green [Thu, 3 Dec 2015 13:37:34 +0000 (21:37 +0800)]
ssl zero return indicates shutdown

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoHandle pending SSL reads which would otherwise not trigger a POLLIN.
Andrew Canaday [Wed, 2 Dec 2015 20:13:56 +0000 (15:13 -0500)]
Handle pending SSL reads which would otherwise not trigger a POLLIN.

8 years agossl set ssl to NULL on close
Andrew Canaday [Thu, 3 Dec 2015 01:44:15 +0000 (09:44 +0800)]
ssl set ssl to NULL on close

8 years agoAllow zero-length pong to be received by server
Andrejs Hanins [Tue, 1 Dec 2015 12:44:33 +0000 (14:44 +0200)]
Allow zero-length pong to be received by server

Client code already allows zero-length pongs

8 years agoosx clang blows up if pthreads flag at link time 2
Andy Green [Sun, 29 Nov 2015 12:17:49 +0000 (20:17 +0800)]
osx clang blows up if pthreads flag at link time 2

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoosx clang blows up if pthreads flag at link time
Andy Green [Sun, 29 Nov 2015 11:41:13 +0000 (19:41 +0800)]
osx clang blows up if pthreads flag at link time

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoDefine 'daemonize' flag if LWS_NO_DAEMONIZE is not defined.
Andrew Canaday [Sun, 29 Nov 2015 11:32:02 +0000 (19:32 +0800)]
Define 'daemonize' flag if LWS_NO_DAEMONIZE is not defined.

8 years agoC89 tweaks as per #348.
Andrew Canaday [Sun, 29 Nov 2015 11:26:01 +0000 (19:26 +0800)]
C89 tweaks as per #348.

8 years agoTerminate truncated header strings.
Andrew Canaday [Sun, 29 Nov 2015 11:24:04 +0000 (19:24 +0800)]
Terminate truncated header strings.

8 years agoosx clang quench deprecated api errors
Andy Green [Sun, 29 Nov 2015 11:19:09 +0000 (19:19 +0800)]
osx clang quench deprecated api errors

after approach by redhat

https://bugzilla.redhat.com/show_bug.cgi?id=1155181

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoissue 352 clang is like gcc for cmake purposes
Andy Green [Sun, 29 Nov 2015 10:52:37 +0000 (18:52 +0800)]
issue 352 clang is like gcc for cmake purposes

After ohauer

https://github.com/warmcat/libwebsockets/issues/352

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agotest server h add newline
Andy Green [Wed, 25 Nov 2015 04:46:08 +0000 (12:46 +0800)]
test server h add newline

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agombed3 working examples
Andy Green [Wed, 25 Nov 2015 00:22:08 +0000 (08:22 +0800)]
mbed3 working examples

You need sal-stack-lwip > 1.0.4 with the listen fix

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agossl treat WANT_READ and WRITE separately
Andy Green [Tue, 24 Nov 2015 07:53:05 +0000 (15:53 +0800)]
ssl treat WANT_READ and WRITE separately

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoclean out mbed3 lwip hacks
Andy Green [Tue, 24 Nov 2015 08:06:22 +0000 (16:06 +0800)]
clean out mbed3 lwip hacks

this upstream mbed patch on sal-stack-lwip sorts the listen probs

https://github.com/bremoran/sal-stack-lwip/commit/a8adf15739cc65acf835ee4c21d5b72a6106195b.patch

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agohttp post zero content length
Andy Green [Fri, 20 Nov 2015 11:31:57 +0000 (19:31 +0800)]
http post zero content length

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoreturn AWAITING_TIMEOUT to 5s
Andy Green [Fri, 20 Nov 2015 10:52:48 +0000 (18:52 +0800)]
return AWAITING_TIMEOUT to 5s

Debugging MBED set it to 20 for a few days

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agotest server pthreads
Andy Green [Fri, 20 Nov 2015 01:33:02 +0000 (09:33 +0800)]
test server pthreads

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoCALLBACK_LOCK_POLL use len to differentiate locking on pollfd change
Andy Green [Fri, 20 Nov 2015 01:51:18 +0000 (09:51 +0800)]
CALLBACK_LOCK_POLL use len to differentiate locking on pollfd change

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agowindows crappy tools dont know __func__
Andy Green [Thu, 19 Nov 2015 09:14:35 +0000 (17:14 +0800)]
windows crappy tools dont know __func__

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agorefactor test server
Andy Green [Thu, 19 Nov 2015 05:55:47 +0000 (13:55 +0800)]
refactor test server

Split test-server into four C files and a header

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agowin remove piggybacked hack
Andy Green [Thu, 19 Nov 2015 00:43:51 +0000 (08:43 +0800)]
win remove piggybacked hack

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoproxy auth fix
Andy Green [Wed, 18 Nov 2015 11:32:01 +0000 (19:32 +0800)]
proxy auth fix

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agowindows eliminate duplicate POLLOUT
Andy Green [Wed, 18 Nov 2015 01:51:07 +0000 (09:51 +0800)]
windows eliminate duplicate POLLOUT

After "hotcookie" on github

https://github.com/warmcat/libwebsockets/issues/345

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agotest echo initial delay
Andy Green [Tue, 17 Nov 2015 01:30:36 +0000 (09:30 +0800)]
test echo initial delay

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoclose actually close after send close ack
Andy Green [Sun, 15 Nov 2015 02:28:45 +0000 (10:28 +0800)]
close actually close after send close ack

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agotest html add open close buttons
Andy Green [Sun, 15 Nov 2015 01:24:25 +0000 (09:24 +0800)]
test html add open close buttons

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoREADME.build.md add mbed3 build info
Andy Green [Sat, 14 Nov 2015 08:47:42 +0000 (16:47 +0800)]
README.build.md add mbed3 build info

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoupdate appveyor to get win openssl from own server
Andy Green [Sat, 14 Nov 2015 07:58:25 +0000 (15:58 +0800)]
update appveyor to get win openssl from own server

slproweb is down

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agombed3 workable plus or minus mbed3 net stack bug
Andy Green [Sun, 8 Nov 2015 04:10:26 +0000 (12:10 +0800)]
mbed3 workable plus or minus mbed3 net stack bug

https://github.com/ARMmbed/sockets/issues/35

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agombed3 plat
Andy Green [Mon, 2 Nov 2015 12:34:12 +0000 (20:34 +0800)]
mbed3 plat

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agombed3 warning cleaning
Andy Green [Mon, 2 Nov 2015 05:10:33 +0000 (13:10 +0800)]
mbed3 warning cleaning

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agointroduce lws_sockfd_type
Andy Green [Mon, 2 Nov 2015 05:13:44 +0000 (13:13 +0800)]
introduce lws_sockfd_type

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agombed3 build support
Andy Green [Mon, 2 Nov 2015 00:21:08 +0000 (08:21 +0800)]
mbed3 build support

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agombed3 add yotta JSON
Andy Green [Mon, 2 Nov 2015 00:22:16 +0000 (08:22 +0800)]
mbed3 add yotta JSON

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agowin use platform invalid socket api elsewhere too
Andy Green [Sat, 14 Nov 2015 05:48:58 +0000 (13:48 +0800)]
win use platform invalid socket api elsewhere too

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agowin client use platform invalid socket
Andy Green [Fri, 13 Nov 2015 23:35:27 +0000 (07:35 +0800)]
win client use platform invalid socket

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoplat win be robust against NULL wsi_from_fd 3
Andy Green [Fri, 13 Nov 2015 23:02:38 +0000 (07:02 +0800)]
plat win be robust against NULL wsi_from_fd 3

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoplat win be robust against NULL wsi_from_fd 2
Andy Green [Fri, 13 Nov 2015 03:43:53 +0000 (11:43 +0800)]
plat win be robust against NULL wsi_from_fd 2

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoplat win be robust against NULL wsi_from_fd
Andy Green [Fri, 13 Nov 2015 02:14:50 +0000 (10:14 +0800)]
plat win be robust against NULL wsi_from_fd

After "haitetra"

https://github.com/warmcat/libwebsockets/issues/343

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agocmake force internal SHA1 if no ssl
Andy Green [Sun, 8 Nov 2015 20:24:46 +0000 (04:24 +0800)]
cmake force internal SHA1 if no ssl

https://github.com/warmcat/libwebsockets/issues/342

You have to explicitly disable LWS_WITHOUT_BUILTIN_SHA1 Cmake option
alomg with SSL to disable SSL

cmake .. -DLWS_WITH_SSL=OFF -DLWS_WITHOUT_BUILTIN_SHA1=OFF

This makes that implicit with disabling SSL.

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoproxy auth
Andy Green [Sun, 8 Nov 2015 02:15:01 +0000 (10:15 +0800)]
proxy auth

Simplifies proxy code to use the existing libwebsocket_set_proxy.

Enables libwebsocket_set_proxy() to parse username:password@ at front of
servername in both http_proxy and info->http_proxy_address.

If given the base64 version of the credentials are sent in the CONNECT
header to the proxy.

Port is now taken from info->http_proxy_address server:port syntax, but if
a port is given in the now deprecated info->http_proxy_port (ie, is nonzero)
then it is allowed to be missed out and the info port used instead for
backwards compatibility.

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agoSubject: [PATCH] Fix for close ack sending
Andrejs Hanins [Fri, 6 Nov 2015 16:18:32 +0000 (18:18 +0200)]
Subject: [PATCH] Fix for close ack sending

It was forgotten in two places that pending close ack should be
processed when wsi state is WSI_STATE_RETURNED_CLOSE_ALREADY, but
not WSI_STATE_ESTABLISHED. As a result, close ack wasn't sent out
to the peer.

8 years agonon ssl on ssl port zero recv ambiguous
Andy Green [Fri, 6 Nov 2015 00:23:05 +0000 (08:23 +0800)]
non ssl on ssl port zero recv ambiguous

Signed-off-by: Andy Green <andy.green@linaro.org>
8 years agonon ssl on ssl port fixes
Andy Green [Fri, 30 Oct 2015 22:49:05 +0000 (06:49 +0800)]
non ssl on ssl port fixes

As found by 'github user 7'

https://github.com/warmcat/libwebsockets/issues/338

Signed-off-by: Andy Green <andy.green@linaro.org>