Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
felixmoebius
libc
Commits
eb287a1a
Commit
eb287a1a
authored
5 years ago
by
leo60228
Browse files
Options
Downloads
Patches
Plain Diff
Update socket types to freebsd
parent
4bd0c000
No related branches found
Branches containing commit
No related tags found
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/unix/newlib/mod.rs
+9
-11
9 additions, 11 deletions
src/unix/newlib/mod.rs
with
9 additions
and
11 deletions
src/unix/newlib/mod.rs
+
9
−
11
View file @
eb287a1a
...
...
@@ -26,18 +26,13 @@ pub type useconds_t = u32;
s!
{
pub
struct
sockaddr
{
pub
sa_len
:
u8
,
pub
sa_family
:
sa_family_t
,
pub
sa_data
:
[::
c_char
;
14
],
}
pub
struct
sockaddr_in
{
pub
sin_family
:
sa_family_t
,
pub
sin_port
:
::
in_port_t
,
pub
sin_addr
:
::
in_addr
,
pub
sin_zero
:
[
u8
;
8
],
}
pub
struct
sockaddr_in6
{
// Unverified
pub
struct
sockaddr_in6
{
pub
sin6_len
:
u8
,
pub
sin6_family
:
sa_family_t
,
pub
sin6_port
:
::
in_port_t
,
pub
sin6_flowinfo
:
u32
,
...
...
@@ -45,9 +40,12 @@ s! {
pub
sin6_scope_id
:
u32
,
}
pub
struct
sockaddr_storage
{
pub
ss_family
:
sa_family_t
,
pub
__ss_padding
:
[
u8
;
26
],
pub
struct
sockaddr_in
{
pub
sin_len
:
u8
,
pub
sin_family
:
::
sa_family_t
,
pub
sin_port
:
::
in_port_t
,
pub
sin_addr
:
::
in_addr
,
pub
sin_zero
:
[::
c_char
;
8
],
}
pub
struct
addrinfo
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment