Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

346
Views
Do I need to memset a C struct in Swift?

AFAIK, In swift, calling the default initialiser of classes/structs will initialise everything to 0 , nil. In C (socket programming for example) sometimes memset is used to set everything to 0 before using the struct. Do I need to use memset in swift too or is fine the way I wrote it?

(BTW, In this case memset is used because hints should be set to 0 except below 2 parameters. Non 0 (garbage, etc) will have side effects on res when calling getaddrinfo.

C:

struct addrinfo hints, *res;
int status;

memset(&hints, 0, sizeof hints);
hints.ai_family = AF_UNSPEC;
hints.ai_socktype = SOCK_STREAM;

status = getaddrinfo(NULL, MYPORT, &hints, &res);

Swift:

var res = UnsafeMutablePointer<addrinfo>()
var hints = addrinfo()
hints.ai_family = AF_UNSPEC
hints.ai_socktype = SOCK_STREAM

let status = getaddrinfo(nil, MYPORT, &hints, &res)
over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

From the Xcode 6.3 release notes:

Imported C structs now have a default initializer in Swift that initializes all of the struct's fields to zero.

which means that

var hints = addrinfo()

initializes all fields of struct addrinfo to zero and there is no need to call memset().

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!