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)
From the Xcode 6.3 release notes:
which means that
initializes all fields of
struct addrinfoto zero and there is no need to callmemset().