|
1 | 1 | package net.sharksystem.asap.protocol; |
2 | 2 |
|
3 | 3 | import net.sharksystem.asap.ASAPException; |
| 4 | +import net.sharksystem.asap.ASAPHop; |
4 | 5 | import net.sharksystem.asap.ASAPSecurityException; |
5 | 6 | import net.sharksystem.asap.engine.ASAPUndecryptableMessageHandler; |
6 | 7 | import net.sharksystem.asap.crypto.ASAPCryptoAlgorithms; |
@@ -148,8 +149,11 @@ public void assimilate(CharSequence sender, CharSequence recipient, CharSequence |
148 | 149 |
|
149 | 150 | @Override |
150 | 151 | public void assimilate(CharSequence sender, CharSequence recipient, CharSequence format, |
151 | | - CharSequence channel, int era, long length, List<Long> offsets, InputStream dataIS, |
152 | | - OutputStream os, ASAPPoint2PointCryptoSettings secureSetting) throws IOException, ASAPException { |
| 152 | + CharSequence channel, int era, long length, List<Long> offsets, List<ASAPHop> asapHops, |
| 153 | + InputStream dataIS, OutputStream os, |
| 154 | + ASAPPoint2PointCryptoSettings secureSetting) |
| 155 | + |
| 156 | + throws IOException, ASAPException { |
153 | 157 |
|
154 | 158 | this.assimilate(sender, recipient, format, channel, era, length, offsets, dataIS, os, |
155 | 159 | secureSetting.mustSign(), secureSetting.mustEncrypt()); |
|
0 commit comments