Ben bir SSL bağlantısı oluşturur bazı basit bir PHP kodu var
$streamContext = stream_context_create();
stream_context_set_option($streamContext, 'ssl', 'local_cert', $this->sslPem);
stream_context_set_option($streamContext, 'ssl', 'passphrase', $this->passPhrase);
$this->apnsConnection = stream_socket_client('ssl://'.$this->apnsHost.':'.$this->apnsPort, $error, $errorString, 60, STREAM_CLIENT_CONNECT, $streamContext);
Ama gerçek SO_KEEPALIVE ayarlamak nasıl biliyor? Ben de aynı şey değildir STREAM_CLIENT_PERSISTENT, denedim.