Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 5 additions & 1 deletion CodeHawk/CHB/bchlib/bCHBCTypeXml.ml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

Copyright (c) 2005-2019 Kestrel Technology LLC
Copyright (c) 2020 Henny Sipma
Copyright (c) 2021-2024 Aarno Labs LLC
Copyright (c) 2021-2026 Aarno Labs LLC

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -131,6 +131,10 @@ let get_standard_txt_type (t: string): btype_t option =
| "DWORD" -> Some (TInt (IUInt, []))
| "gid_t" -> Some (TInt (IUInt, []))
| "id_t" -> Some (TInt (IUInt, [])) (* used in getpriority *)
| "in_addr_t" ->
(* equivalent to the type uint32_t, see
https://pubs.opengroup.org/onlinepubs/9699919799/ *)
Some (TInt (IUInt, []))
| "int" -> Some (TInt (IInt, []))
| "Integer" -> Some (TInt (IInt, []))
| "long" -> Some (TInt (ILong, []))
Expand Down
4 changes: 2 additions & 2 deletions CodeHawk/CHB/bchlib/bCHVersion.ml
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ end


let version = new version_info_t
~version:"0.6.0_20260407"
~date:"2026-04-07"
~version:"0.6.0_20260418"
~date:"2026-04-18"
~licensee: None
~maxfilesize: None
()
2 changes: 1 addition & 1 deletion CodeHawk/CHB/bchsummaries/so_functions/inet_addr.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<type><ptr>char</ptr></type>
<pre><deref-read-nt/></pre>
</par>
<returntype>ch__in_addr</returntype>
<returntype>in_addr_t</returntype>
</api>
<semantics>
<io-actions/>
Expand Down
Loading