This is an automated email from the ASF dual-hosted git repository.

cdutz pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-plc4x.git.


    from 9b35217  - Fixed the decoding of read var responses
     add 386c49d  PLC4X-18 - Implement a Netty Pipeline that allows creating 
pipelines for low level protocols below TCP and UDP
     add a980d61  Merge branches 'feature/PLC4X-18--raw-sockets' and 'master' 
of https://gitbox.apache.org/repos/asf/incubator-plc4x into 
feature/PLC4X-18--raw-sockets
     add 03ba3ce  PLC4X-18 - Implement a Netty Pipeline that allows creating 
pipelines for low level protocols below TCP and UDP
     add cbcd7e4  PLC4X-18 - Implement a Netty Pipeline that allows creating 
pipelines for low level protocols below TCP and UDP  - Initial commit of this 
effort - Added a new module hierarchy for utility modules
     add 9267533  Merge branch 'master' of 
https://gitbox.apache.org/repos/asf/incubator-plc4x into 
feature/PLC4X-18--raw-sockets
     add 492f9b9  - Some renaming
     add df791fd  Added apache header
     add 75063b2  Merge branches 'feature/PLC4X-18--raw-sockets' and 'master' 
of https://gitbox.apache.org/repos/asf/incubator-plc4x into 
feature/PLC4X-18--raw-sockets
     add e746e70  - Test implementation of a program sending raw icmp ip 
packets (ping)
     add 04784d5  Merge branches 'feature/PLC4X-18--raw-sockets' and 'master' 
of https://gitbox.apache.org/repos/asf/incubator-plc4x into 
feature/PLC4X-18--raw-sockets
     add 0c25c59  - First implementation of a somewhat functional and usable 
RawSocket implementation.
     add 8a2c2d8  - Moved the the component to a different package.
     add f83bc9d  - Fixed the build ;-)
     new 26e2965  Merge branches 'feature/PLC4X-18--raw-sockets' and 'master' 
of https://gitbox.apache.org/repos/asf/incubator-plc4x into 
feature/PLC4X-18--raw-sockets
     new 2e6e8be  - Removed unneeded console output
     new a11ce46  Merge branch 'feature/PLC4X-18--raw-sockets'
     new a25f5e6  - Fixed dependency plugin finding

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 plc4j/pom.xml                                      |    1 +
 plc4j/{protocols => utils}/pom.xml                 |   12 +-
 plc4j/utils/raw-sockets/pom.xml                    |   19 +-
 .../rawsockets/netty/AbstractRawSocketChannel.java |  740 ++++++++++++++
 .../netty/AbstractRawSocketStreamChannel.java      | 1042 ++++++++++++++++++++
 .../utils/rawsockets/netty/RawSocketChannel.java   |  133 +++
 .../rawsockets/netty/RawSocketChannelConfig.java   |  187 ++++
 .../rawsockets/netty/RawSocketChannelSav.java      |  186 ++++
 .../rawsockets/netty/RawSocketEventArray.java      |  104 ++
 .../utils/rawsockets/netty/RawSocketEventLoop.java |  449 +++++++++
 .../plc4x/java/utils/rawsockets/RawSocket.java     |  281 ++++++
 .../java/utils/rawsockets/RawSocketException.java  |   32 +
 .../java/utils/rawsockets/RawSocketListener.java   |   22 +
 .../plc4x/java/utils/rawsockets/RawSocketTest.java |   56 ++
 plc4j/{api => utils/wireshark-utils}/pom.xml       |   10 +-
 pom.xml                                            |    7 +-
 16 files changed, 3257 insertions(+), 24 deletions(-)
 copy plc4j/{protocols => utils}/pom.xml (83%)
 create mode 100644 
plc4j/utils/raw-sockets/src/main/java-sav/org/apache/plc4x/java/utils/rawsockets/netty/AbstractRawSocketChannel.java
 create mode 100644 
plc4j/utils/raw-sockets/src/main/java-sav/org/apache/plc4x/java/utils/rawsockets/netty/AbstractRawSocketStreamChannel.java
 create mode 100644 
plc4j/utils/raw-sockets/src/main/java-sav/org/apache/plc4x/java/utils/rawsockets/netty/RawSocketChannel.java
 create mode 100644 
plc4j/utils/raw-sockets/src/main/java-sav/org/apache/plc4x/java/utils/rawsockets/netty/RawSocketChannelConfig.java
 create mode 100644 
plc4j/utils/raw-sockets/src/main/java-sav/org/apache/plc4x/java/utils/rawsockets/netty/RawSocketChannelSav.java
 create mode 100644 
plc4j/utils/raw-sockets/src/main/java-sav/org/apache/plc4x/java/utils/rawsockets/netty/RawSocketEventArray.java
 create mode 100644 
plc4j/utils/raw-sockets/src/main/java-sav/org/apache/plc4x/java/utils/rawsockets/netty/RawSocketEventLoop.java
 create mode 100644 
plc4j/utils/raw-sockets/src/main/java/org/apache/plc4x/java/utils/rawsockets/RawSocket.java
 create mode 100644 
plc4j/utils/raw-sockets/src/main/java/org/apache/plc4x/java/utils/rawsockets/RawSocketException.java
 create mode 100644 
plc4j/utils/raw-sockets/src/main/java/org/apache/plc4x/java/utils/rawsockets/RawSocketListener.java
 create mode 100644 
plc4j/utils/raw-sockets/src/test/java/org/apache/plc4x/java/utils/rawsockets/RawSocketTest.java
 copy plc4j/{api => utils/wireshark-utils}/pom.xml (78%)

-- 
To stop receiving notification emails like this one, please contact
cd...@apache.org.

Reply via email to