sockets
manifest mülkü, sockets.udp, sockets.tcp ve sockets.tcpServer API'leri için hangi izinlerin kullanılabileceğini belirtir.
Örnek manifest.json
{
"name": "My Sockets app",
"sockets": {
"udp": {
// Permission for chrome.sockets.udp.send:
// The application is allowed to send udp packets
// to any host:port combination.
"send": "*"
},
"tcp": {
// Permission for chrome.sockets.tcp.connect:
// The application is allowed to connect only to the
// tcp server on 127.0.0.1 port 80.
"connect": "127.0.0.1:80"
},
"tcpServer": {
// Permission for chrome.sockets.tcpServer.listen:
// The application is allowed to accept new client
// connections on the local address at port 80.
"listen": "127.0.0.1:80"
}
},
...
}
Referans
udp
(nesne): isteğe bağlıudp
manifest mülkü, bir uygulamanın hangi sockets.udp işlemlerini yapabileceğini belirtir.Tür Özellik Açıklama dize veya dize dizisi (isteğe bağlı) bind bind
işlemleri için ana makine:port kalıbı.dize veya dize dizisi (isteğe bağlı) gönder send
işlemleri için ana makine:port kalıbı.dize veya dize dizisi (isteğe bağlı) multicastMembership joinGroup
işlemleri için ana makine:bağlantı noktası kalıbı.tcp
(nesne): isteğe bağlıtcp
manifest mülkü, bir uygulamanın hangi sockets.tcp işlemlerini yapabileceğini belirtir.Tür Özellik Açıklama dize veya dize dizisi (isteğe bağlı) connect connect
işlemleri için ana makine:port kalıbı.tcpServer
(nesne): isteğe bağlıtcpServer
manifest mülkü, bir uygulamanın hangi sockets.tcpServer işlemlerini yapabileceğini belirtir.Tür Özellik Açıklama dize veya dize dizisi (isteğe bağlı) dinle listen
işlemleri için ana makine:bağlantı noktası kalıbı.