Compare commits

..

4 Commits

Author SHA1 Message Date
ab20c1b1ea Preparing for release 2024-05-02 17:08:44 -04:00
4ba0993483 Update README 2024-05-02 17:06:03 -04:00
cf1dff31b9 Change HiChaine approach for Dns Get Address By Name$ 2024-05-02 17:04:54 -04:00
79e77287bb Improve build script 2024-05-02 17:04:43 -04:00
8 changed files with 49 additions and 31 deletions

Binary file not shown.

View File

@ -214,13 +214,14 @@ to contact me, send the `report.txt` along with the details on your issue.
Internal release.
### 1.1.4 (2024-04-26)
### 1.1.4 (2024-05-02)
* Fix bug in fdset macro where using D3 for a parameter could cause corruption.
* Copy a null-terminated copy of IP address for `SocketIPAddressPortToSockaddr`.
* Add test suite to exercise extension functionality.
* Fix several crash bugs found due to the test suite.
* Retructure API docs for easier reading.
* Improve build and release tooling.
## Development

View File

@ -6,14 +6,14 @@ require 'erb'
source = File.read('src/BSDSocket.s')
aminet_template = ERB.new(File.read("aminet.readme.erb"))
aminet_template = ERB.new(File.read('aminet.readme.erb'))
capture_version = false
version = nil
source.lines.each do |line|
if capture_version
version = line[/dc\.b "([^"]+)"/,1]
version = line[/dc\.b "([^"]+)"/, 1]
break
end
@ -34,48 +34,67 @@ FileUtils.rm_rf build_dir
FileUtils.mkdir_p build_dir
FileUtils.mkdir_p 'aminet'
FileUtils.cp 'src/AMOSPro_BSDSocket.Lib', 'AMOSPro_BSDSocket.Lib'
hackerbun_target = File.expand_path("dist/AMOSPro_BSDSocket_#{version}.lha")
[
"AMOSPro_BSDSocket.Lib",
"README.md",
"API.md",
"LICENSE",
'AMOSPro_BSDSocket.Lib',
'README.md',
'API.md',
'LICENSE'
].each do |file|
target = "#{build_dir}/#{file}"
FileUtils.mkdir_p File.dirname(target)
FileUtils.cp file, target
end
[
"src",
"examples"
%w[
src
examples
].each do |dir|
FileUtils.cp_r dir, "#{build_dir}/#{dir}"
end
Dir["icons/**/*.info"].each do |info|
target = info.gsub("icons/", build_base + "/")
Dir['icons/**/*.info'].each do |info|
target = info.gsub('icons/', build_base + '/')
FileUtils.mkdir_p File.dirname(target)
FileUtils.cp info, target
end
Dir[File.join(build_base, '**', '*.uaem')].each do |file|
FileUtils.rm file
end
Dir[File.join(build_base, '**', '*.bak')].each do |file|
FileUtils.rm file
end
Dir[File.join(build_base, 'src', '*.Lib')].each do |file|
pp file
FileUtils.rm file
end
Dir[File.join(build_base, 'src', 'bsdsocket_l*')].each do |file|
FileUtils.rm file
end
Dir.chdir build_base do
Open3.popen2e(
"jlha", "c", hackerbun_target,
*(Dir["*"])) do |stdin, stdout_and_stderr, wait_thr|
Thread.new do
stdout_and_stderr.each { |l| puts l }
end
stdin.close
wait_thr.value
'jlha', 'c', hackerbun_target,
*(Dir['*'])
) do |stdin, stdout_and_stderr, wait_thr|
Thread.new do
stdout_and_stderr.each { |l| puts l }
end
stdin.close
wait_thr.value
end
end
FileUtils.cp hackerbun_target, "aminet/BSDSocket-Extension.lha"
File.open("aminet/BSDSocket-Extension.readme", "w") do |fh|
FileUtils.cp hackerbun_target, 'aminet/BSDSocket-Extension.lha'
File.open('aminet/BSDSocket-Extension.readme', 'w') do |fh|
fh.puts aminet_template.result(binding)
end

Binary file not shown.

View File

@ -2033,6 +2033,9 @@ _DnsGetHostAddressByName_GetIPAddressLength:
ADDQ #2,D3
Rjsr L_Demande ; string is in A0/A1
LEA 2(A0,D3.W),A1
MOVE.L A1,HiChaine(A5)
MOVE.L A0,A1
MOVE.W D4,(A1)+
@ -2042,11 +2045,6 @@ _DnsGetHostAddressByName_KeepCopying:
MOVE.B (A2)+,(A1)+
DBRA D4,_DnsGetHostAddressByName_KeepCopying
MOVE.W A1,D1
AND.W #$0001,D1
ADD.W D1,A1
MOVE.L A1,HiChaine(A5)
MOVE.L A0,D3
RestoreStackFunction

View File

@ -1,5 +1,5 @@
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
; BSDSocket.s, list of the library functions on the 28-04-2024 19:05:54
; BSDSocket.s, list of the library functions on the 02-05-2024 14:22:07
;
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
L_Cold: set 0

View File

@ -1,5 +1,5 @@
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
; BSDSocket.s, library size on the 28-04-2024 19:05:54
; BSDSocket.s, library size on the 02-05-2024 14:22:07
;
; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lib_Size equ 39

Binary file not shown.