Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed some links, and improved description #78

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@ Jaxl v3.x is a successor of v2.x (and is NOT backward compatible),
carrying a lot of code from v2.x while throwing away the ugly parts.
A lot of components have been re-written keeping in mind the feedback from
the developer community over the last 4 years. Also Jaxl shares a few
philosophies from my experience with erlang and python languages.
philosophies from my experience with Erlang and Python languages.

Jaxl is an asynchronous, non-blocking I/O, event based PHP library
for writing custom TCP/IP client and server implementations.
From it's previous versions, library inherits a full blown stable support
for [XMPP protocol stack](https://github.com/jaxl/JAXL/tree/v3.1.0/xmpp).
In v3.0, support for [HTTP protocol stack](https://github.com/jaxl/JAXL/tree/v3.1.0/http)
From its previous versions, library inherits a full blown stable support
for [XMPP protocol stack](https://github.com/jaxl/JAXL/tree/master/src/JAXL/xmpp).
In v3.0, support for [HTTP protocol stack](https://github.com/jaxl/JAXL/tree/master/src/JAXL/http)
has also been added.

At the heart of every protocol stack sits the [Core stack](https://github.com/jaxl/JAXL/tree/v3.1.0/core).
At the heart of every protocol stack sits the [Core stack](https://github.com/jaxl/JAXL/tree/master/src/JAXL/core).
It contains all the building blocks for everything that we aim to do with Jaxl library.
Both XMPP and HTTP protocol stacks are written on top of the Core stack.
Infact the source code of protocol implementations knows nothing
about the standard (inbuilt) PHP socket and stream methods.
In fact, the source code of protocol implementations knows nothing
about the standard (built-in) PHP socket and stream methods.

[Examples](https://github.com/jaxl/JAXL/tree/v3.1.0/examples/)

Expand Down