var readStream:CFReadStream?
var writeStream:CFWriteStream?
var request: NSMutableURLRequest = NSMutableURLRequest()
var host = request.URL.host
var port = request.URL.port.unsignedIntegerValue
CFStreamCreatePairWithSocketToHost(nil, nil, port, readStream, writeStream)
^ "Cannot convert the expression's type Void to type CFAllocator!"
Why is it assuming I am changing it's type to 'CFAllocator!'. I tried changing the input values, but it keeps coming up with the same error.