Skip to content

Commit

Permalink
add i_ssl_id parameter (#830)
Browse files Browse the repository at this point in the history
  • Loading branch information
larshp authored Jan 15, 2024
1 parent b749a66 commit c84ce16
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
},
"license": "MIT",
"dependencies": {
"@abaplint/cli": "^2.105.9",
"@abaplint/runtime": "^2.7.141",
"@abaplint/cli": "^2.105.10",
"@abaplint/runtime": "^2.7.142",
"@abaplint/database-sqlite": "^2.7.119",
"@abaplint/transpiler-cli": "^2.7.141"
"@abaplint/transpiler-cli": "^2.7.142"
}
}
1 change: 1 addition & 0 deletions src/abap/cl_abap_gzip.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ ENDCLASS.

CLASS cl_abap_gzip IMPLEMENTATION.
METHOD decompress_binary_with_header.
* with gzip RFC 1952 header
WRITE '@KERNEL const zlib = await import("zlib");'.
WRITE '@KERNEL const buf = Buffer.from(gzip_in.get(), "hex");'.
WRITE '@KERNEL const decompress = zlib.gunzipSync(buf).toString("hex").toUpperCase();'.
Expand Down
1 change: 1 addition & 0 deletions src/tcp/cl_apc_tcp_client_manager.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ CLASS cl_apc_tcp_client_manager DEFINITION PUBLIC.
i_frame TYPE if_abap_channel_types=>ty_apc_tcp_frame
i_event_handler TYPE REF TO if_apc_wsp_event_handler
i_protocol TYPE i DEFAULT co_protocol_type_tcp
i_ssl_id TYPE ssfapplssl OPTIONAL
RETURNING
VALUE(ri_client) TYPE REF TO if_apc_wsp_client
RAISING
Expand Down

0 comments on commit c84ce16

Please sign in to comment.