René's URL Explorer Experiment


Title: ICE/STUN: Negotiation · Issue #2 · OpenXbox/xcloud-python · GitHub

Open Graph Title: ICE/STUN: Negotiation · Issue #2 · OpenXbox/xcloud-python

X Title: ICE/STUN: Negotiation · Issue #2 · OpenXbox/xcloud-python

Description: Problem ICE (Interactive Connectivity Establishment) / STUN is used to negotiate communication-channel between NAT'd hosts. Its currently only used for xhomestreaming. The initial ICE-message comes from the client (mobile device - iOS/An...

Open Graph Description: Problem ICE (Interactive Connectivity Establishment) / STUN is used to negotiate communication-channel between NAT'd hosts. Its currently only used for xhomestreaming. The initial ICE-message comes...

X Description: Problem ICE (Interactive Connectivity Establishment) / STUN is used to negotiate communication-channel between NAT'd hosts. Its currently only used for xhomestreaming. The initial ICE-message c...

Opengraph URL: https://github.com/OpenXbox/xcloud-python/issues/2

X: @github

direct link

Domain: patch-diff.githubusercontent.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"ICE/STUN: Negotiation","articleBody":"## Problem\r\nICE (Interactive Connectivity Establishment) / STUN is used to negotiate communication-channel between NAT'd hosts.\r\nIts currently only used for xhomestreaming.\r\nThe initial ICE-message comes from the client (mobile device - iOS/Android) to the cloud.\r\n\r\nQuestions:\r\n* Is Teredo involved for gathering that info?\r\n* Is it related to host mxhome.ipv6.microsoft.com ?\r\n* What are the 80 bytes long UDP packets, before STUN/ICE happens - is that maybe the communication with a STUN server to determine the Xbox's connectivity?\r\n\r\n## Current version of assembling the ICE request\r\nhttps://github.com/tuxuser/xcloud/blob/8295d2c86bf8ece56dbbd02c1f749a4426955bcb/ice.py#L26-L37\r\n\r\nYou can test what the used library produces when gathering local candidates with following snippet:\r\n\r\n```py\r\nimport asyncio\r\nfrom aiortc import RTCIceGatherer\r\n\r\n\r\nasync def main():\r\n    gatherer = RTCIceGatherer()\r\n\r\n    await gatherer.gather()\r\n    candidates = gatherer.getLocalCandidates()\r\n    params = gatherer.getLocalParameters()\r\n\r\n    print(':: Candidates')\r\n    for candidate in candidates:\r\n        print(candidate)\r\n\r\n    print(':: Params')\r\n    print(params)\r\n\r\nasyncio.run(main())\r\n```\r\n\r\nLocal IPs: `10.0.0.102` (Wireless), `10.0.0.246` (Wired)\r\nPublic IP: `126.242.118.111`\r\n\r\nOutput:\r\n```text\r\n:: Candidates\r\nRTCIceCandidate(component=1, foundation='d175634b4f0f6f112c7c1cc9ad15ec68', ip='10.0.0.102', port=58503, priority=2130706431, protocol='udp', type='host', relatedAddress=None, relatedPort=None, sdpMid=None, sdpMLineIndex=None, tcpType=None)\r\nRTCIceCandidate(component=1, foundation='c03547823954444e207cb7cb72c3c97c', ip='10.0.0.246', port=55610, priority=2130706431, protocol='udp', type='host', relatedAddress=None, relatedPort=None, sdpMid=None, sdpMLineIndex=None, tcpType=None)\r\nRTCIceCandidate(component=1, foundation='b08d047b90595fc82469f8b2b3913eaf', ip='126.242.118.111', port=55610, priority=1694498815, protocol='udp', type='srflx', relatedAddress='10.0.0.246', relatedPort=55610, sdpMid=None, sdpMLineIndex=None, tcpType=None)\r\nRTCIceCandidate(component=1, foundation='7eb039734c8997056a4537b2821f17f2', ip='126.242.118.111', port=58503, priority=1694498815, protocol='udp', type='srflx', relatedAddress='10.0.0.102', relatedPort=58503, sdpMid=None, sdpMLineIndex=None, tcpType=None)\r\n:: Params\r\nRTCIceParameters(usernameFragment='Goil', password='LCeehS7T9xJ0uYOBtvJbXz', iceLite=False)\r\n```\r\n\r\n## Real / sample data\r\n\r\n**NOTE**: The actual JSON post data is in a very fucked format, so I converted it for better visibility.\r\n\r\nOriginal sample request, 1:1 as sent:\r\n\r\n```json\r\n{\r\n    \"candidates\": \"{\\n    \\\"Full\\\": \\\"1\\\",\\n    \\\"PacingMs\\\": \\\"50\\\",\\n    \\\"Version\\\": \\\"1\\\",\\n    \\\"Candidates\\\": {\\n        \\\"count\\\": \\\"2\\\",\\n        \\\"0\\\": {\\n            \\\"transportAddress\\\": \\\"10.0.0.187:46274\\\",\\n            \\\"baseAddress\\\": \\\"10.0.0.187:46274\\\",\\n            \\\"serverAddress\\\": \\\"\\\",\\n            \\\"ipv6\\\": \\\"0\\\",\\n            \\\"type\\\": \\\"0\\\",\\n            \\\"addressType\\\": \\\"3\\\",\\n            \\\"priority\\\": \\\"2130706175\\\",\\n            \\\"foundation\\\": \\\"1047782621\\\",\\n            \\\"transport\\\": \\\"udp\\\"\\n        },\\n        \\\"1\\\": {\\n            \\\"transportAddress\\\": \\\"[2001:0:338c:24f4:3405:17fd:a21d:47d7]:59394\\\",\\n            \\\"baseAddress\\\": \\\"teredo\\\",\\n            \\\"serverAddress\\\": \\\"\\\",\\n            \\\"ipv6\\\": \\\"1\\\",\\n            \\\"type\\\": \\\"4\\\",\\n            \\\"addressType\\\": \\\"0\\\",\\n            \\\"priority\\\": \\\"2130706431\\\",\\n            \\\"foundation\\\": \\\"1337598143\\\",\\n            \\\"transport\\\": \\\"udp\\\"\\n        }\\n    },\\n    \\\"Username\\\": \\\"F+R3n0qOTvc=\\\",\\n    \\\"Password\\\": \\\"ciypiKgGwlnWDQ8nqx3oFy3xs6eRHo4WpVDoFNjWyiM=\\\"\\n}\\n\"\r\n}\r\n```\r\n\r\n### iOS\r\n\r\n#### Request\r\n\r\n```POST https://uks.gssv-play-prodxhome.xboxlive.com/v4/sessions/home/\u003cSESSION_GUID\u003e/ice```\r\n\r\n```json\r\n{\r\n    \"candidates\": {\r\n        \"Full\": \"1\",\r\n        \"PacingMs\": \"50\",\r\n        \"Version\": \"1\",\r\n        \"Candidates\": {\r\n            \"count\": \"7\",\r\n            \"0\": {\r\n                \"transportAddress\": \"[fe80::211:2daf:bbc4:7c6d]:59485\",\r\n                \"baseAddress\": \"[fe80::211:2daf:bbc4:7c6d%utun1]:59485\",\r\n                \"serverAddress\": \"\",\r\n                \"ipv6\": \"1\",\r\n                \"type\": \"0\",\r\n                \"addressType\": \"4\",\r\n                \"priority\": \"2130704895\",\r\n                \"foundation\": \"1966258098\",\r\n                \"transport\": \"udp\"\r\n            },\r\n            \"1\": {\r\n                \"transportAddress\": \"[fe80::f7d9:41:3b02:e963]:54748\",\r\n                \"baseAddress\": \"[fe80::f7d9:41:3b02:e963%utun0]:54748\",\r\n                \"serverAddress\": \"\",\r\n                \"ipv6\": \"1\",\r\n                \"type\": \"0\",\r\n                \"addressType\": \"4\",\r\n                \"priority\": \"2130705151\",\r\n                \"foundation\": \"1623794664\",\r\n                \"transport\": \"udp\"\r\n            },\r\n            \"2\": {\r\n                \"transportAddress\": \"[fe80::e8e2:a3ff:fe47:cf82]:57121\",\r\n                \"baseAddress\": \"[fe80::e8e2:a3ff:fe47:cf82%awdl0]:57121\",\r\n                \"serverAddress\": \"\",\r\n                \"ipv6\": \"1\",\r\n                \"type\": \"0\",\r\n                \"addressType\": \"4\",\r\n                \"priority\": \"2130705407\",\r\n                \"foundation\": \"4238851165\",\r\n                \"transport\": \"udp\"\r\n            },\r\n            \"3\": {\r\n                \"transportAddress\": \"[fe80::e8e2:a3ff:fe47:cf82]:50840\",\r\n                \"baseAddress\": \"[fe80::e8e2:a3ff:fe47:cf82%llw0]:50840\",\r\n                \"serverAddress\": \"\",\r\n                \"ipv6\": \"1\",\r\n                \"type\": \"0\",\r\n                \"addressType\": \"4\",\r\n                \"priority\": \"2130705663\",\r\n                \"foundation\": \"193038242\",\r\n                \"transport\": \"udp\"\r\n            },\r\n            \"4\": {\r\n                \"transportAddress\": \"10.0.0.210:64864\",\r\n                \"baseAddress\": \"10.0.0.210:64864\",\r\n                \"serverAddress\": \"\",\r\n                \"ipv6\": \"0\",\r\n                \"type\": \"0\",\r\n                \"addressType\": \"3\",\r\n                \"priority\": \"2130705919\",\r\n                \"foundation\": \"8449565\",\r\n                \"transport\": \"udp\"\r\n            },\r\n            \"5\": {\r\n                \"transportAddress\": \"[fe80::1]:60576\",\r\n                \"baseAddress\": \"[fe80::1%lo0]:60576\",\r\n                \"serverAddress\": \"\",\r\n                \"ipv6\": \"1\",\r\n                \"type\": \"0\",\r\n                \"addressType\": \"4\",\r\n                \"priority\": \"2130706175\",\r\n                \"foundation\": \"1535104454\",\r\n                \"transport\": \"udp\"\r\n            },\r\n            \"6\": {\r\n                \"transportAddress\": \"[2001:0:338c:24f4:429:211e:a21d:47d7]:57057\",\r\n                \"baseAddress\": \"teredo\",\r\n                \"serverAddress\": \"\",\r\n                \"ipv6\": \"1\",\r\n                \"type\": \"4\",\r\n                \"addressType\": \"0\",\r\n                \"priority\": \"2130706431\",\r\n                \"foundation\": \"2234788496\",\r\n                \"transport\": \"udp\"\r\n            }\r\n        },\r\n        \"Username\": \"u1hWGHuvhTs=\",\r\n        \"Password\": \"XFBjMQwX3CJxtHs1oj8WbzlT74I+P4gJWbh\\\\/OJrETgo=\"\r\n    }\r\n}\r\n```\r\n\r\n#### Response\r\n\r\n```GET https://uks.gssv-play-prodxhome.xboxlive.com/v4/sessions/home/\u003cSESSION_GUID\u003e/ice```\r\n\r\n```json\r\n{\r\n    \"candidates\": {\r\n        \"Full\": \"1\",\r\n        \"PacingMs\": \"50\",\r\n        \"Version\": \"1\",\r\n        \"Candidates\": {\r\n            \"count\": \"3\",\r\n            \"0\": {\r\n                \"transportAddress\": \"10.0.0.174:51068\",\r\n                \"baseAddress\": \"10.0.0.174:51068\",\r\n                \"serverAddress\": \"\",\r\n                \"ipv6\": \"0\",\r\n                \"type\": \"0\",\r\n                \"addressType\": \"3\",\r\n                \"priority\": \"2130705919\",\r\n                \"foundation\": \"3475377771\",\r\n                \"transport\": \"udp\"\r\n            },\r\n            \"1\": {\r\n                \"transportAddress\": \"[2001:0:338c:24f4:456:f3fd:a21d:47d7]:51069\",\r\n                \"baseAddress\": \"[2001:0:338c:24f4:456:f3fd:a21d:47d7]:51069\",\r\n                \"serverAddress\": \"\",\r\n                \"ipv6\": \"1\",\r\n                \"type\": \"0\",\r\n                \"addressType\": \"0\",\r\n                \"priority\": \"2130706175\",\r\n                \"foundation\": \"1346576940\",\r\n                \"transport\": \"udp\"\r\n            },\r\n            \"2\": {\r\n                \"transportAddress\": \"[fe80::456:f3fd:a21d:47d7]:51070\",\r\n                \"baseAddress\": \"[fe80::456:f3fd:a21d:47d7%6]:51070\",\r\n                \"serverAddress\": \"\",\r\n                \"ipv6\": \"1\",\r\n                \"type\": \"0\",\r\n                \"addressType\": \"4\",\r\n                \"priority\": \"2130706431\",\r\n                \"foundation\": \"2239954977\",\r\n                \"transport\": \"udp\"\r\n            }\r\n        },\r\n        \"Username\": \"K9rfTAAHfMI=\",\r\n        \"Password\": \"g3IuMXEcLVau\\\\/2QhQq6MvpsOqGBJHJ3T3+tg68p97fs=\"\r\n    }\r\n}\r\n```\r\n\r\n### Android\r\n\r\n#### Request\r\n\r\n```POST https://uks.gssv-play-prodxhome.xboxlive.com/v4/sessions/home/\u003cSESSION_GUID\u003e/ice```\r\n\r\n```json\r\n{\r\n    \"candidates\": {\r\n        \"Candidates\": {\r\n            \"0\": {\r\n                \"addressType\": \"3\",\r\n                \"baseAddress\": \"10.0.0.187:46274\",\r\n                \"foundation\": \"1047782621\",\r\n                \"ipv6\": \"0\",\r\n                \"priority\": \"2130706175\",\r\n                \"serverAddress\": \"\",\r\n                \"transport\": \"udp\",\r\n                \"transportAddress\": \"10.0.0.187:46274\",\r\n                \"type\": \"0\"\r\n            },\r\n            \"1\": {\r\n                \"addressType\": \"0\",\r\n                \"baseAddress\": \"teredo\",\r\n                \"foundation\": \"1337598143\",\r\n                \"ipv6\": \"1\",\r\n                \"priority\": \"2130706431\",\r\n                \"serverAddress\": \"\",\r\n                \"transport\": \"udp\",\r\n                \"transportAddress\": \"[2001:0:338c:24f4:3405:17fd:a21d:47d7]:59394\",\r\n                \"type\": \"4\"\r\n            },\r\n            \"count\": \"2\"\r\n        },\r\n        \"Full\": \"1\",\r\n        \"PacingMs\": \"50\",\r\n        \"Password\": \"ciypiKgGwlnWDQ8nqx3oFy3xs6eRHo4WpVDoFNjWyiM=\",\r\n        \"Username\": \"F+R3n0qOTvc=\",\r\n        \"Version\": \"1\"\r\n    }\r\n}\r\n```\r\n\r\n#### Response\r\n\r\n```GET https://uks.gssv-play-prodxhome.xboxlive.com/v4/sessions/home/\u003cSESSION_GUID\u003e/ice```\r\n\r\n```json\r\n{\r\n    \"candidates\": {\r\n        \"Candidates\": {\r\n            \"0\": {\r\n                \"addressType\": \"3\",\r\n                \"baseAddress\": \"10.0.0.174:56974\",\r\n                \"foundation\": \"1251832755\",\r\n                \"ipv6\": \"0\",\r\n                \"priority\": \"2130705919\",\r\n                \"serverAddress\": \"\",\r\n                \"transport\": \"udp\",\r\n                \"transportAddress\": \"10.0.0.174:56974\",\r\n                \"type\": \"0\"\r\n            },\r\n            \"1\": {\r\n                \"addressType\": \"0\",\r\n                \"baseAddress\": \"[2001:0:338c:24f4:20c1:f3fd:a21d:47d7]:56975\",\r\n                \"foundation\": \"491644152\",\r\n                \"ipv6\": \"1\",\r\n                \"priority\": \"2130706175\",\r\n                \"serverAddress\": \"\",\r\n                \"transport\": \"udp\",\r\n                \"transportAddress\": \"[2001:0:338c:24f4:20c1:f3fd:a21d:47d7]:56975\",\r\n                \"type\": \"0\"\r\n            },\r\n            \"2\": {\r\n                \"addressType\": \"4\",\r\n                \"baseAddress\": \"[fe80::20c1:f3fd:a21d:47d7%6]:56976\",\r\n                \"foundation\": \"3489845490\",\r\n                \"ipv6\": \"1\",\r\n                \"priority\": \"2130706431\",\r\n                \"serverAddress\": \"\",\r\n                \"transport\": \"udp\",\r\n                \"transportAddress\": \"[fe80::20c1:f3fd:a21d:47d7]:56976\",\r\n                \"type\": \"0\"\r\n            },\r\n            \"count\": \"3\"\r\n        },\r\n        \"Full\": \"1\",\r\n        \"PacingMs\": \"50\",\r\n        \"Password\": \"lNj2y+Q3Jkec7SlUcsOwaAHOS5Fad4gKxmmHBumPnTo=\",\r\n        \"Username\": \"nxhPDLwFKc0=\",\r\n        \"Version\": \"1\"\r\n    }\r\n}\r\n```\r\n\r\n## Libraries\r\n\r\n[aiortc](https://github.com/aiortc/aiortc)\r\n[aioice (used by aiortc)](https://github.com/aiortc/aioice)\r\n\r\n## Specs\r\n\r\n[RFC 4380 Teredo: Tunneling IPv6 over UDP through Network Address Translations (NATs)](https://datatracker.ietf.org/doc/rfc4380/)\r\n[RFC 5245 Interactive Connectivity Establishment (ICE): A Protocol for Network Address Translator (NAT) Traversal for Offer/Answer Protocols](https://tools.ietf.org/html/rfc5245)\r\n[RFC 5839 Session Traversal Utilities for NAT (STUN)](https://tools.ietf.org/html/rfc5389)\r\n[RFC 5991 Teredo Security Updates](https://datatracker.ietf.org/doc/rfc5991/)\r\n[RFC 6081 Teredo Extensions](https://datatracker.ietf.org/doc/rfc6081/)\r\n[RFC 8445 Interactive Connectivity Establishment (ICE): A Protocol for Network Address Translator (NAT) Traversal](https://tools.ietf.org/html/rfc8445)","author":{"url":"https://github.com/tuxuser","@type":"Person","name":"tuxuser"},"datePublished":"2020-09-29T22:10:56.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":2},"url":"https://github.com/2/xcloud-python/issues/2"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:8579ae37-ec9d-dd83-acac-a26452aff3b5
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idECC0:11245:63AD63:84B3F7:698D8009
html-safe-noncee9d82bad81f473747320ae692ae1409ea00cdc52f313b0a5c1b9a38c2bead21d
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFQ0MwOjExMjQ1OjYzQUQ2Mzo4NEIzRjc6Njk4RDgwMDkiLCJ2aXNpdG9yX2lkIjoiMjgzMjA0MTU4MDg0NzEwNDA5IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac8a8143b5e1722293375889d9cef4e07d35dd5fdfc60294a9dcbd5326b69ca4cf
hovercard-subject-tagissue:711493015
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/OpenXbox/xcloud-python/2/issue_layout
twitter:imagehttps://opengraph.githubassets.com/c0866d5136c9b09ee8c4c9d34c3f4e705481ec5903640e16f00ceeaf67a62fe6/OpenXbox/xcloud-python/issues/2
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/c0866d5136c9b09ee8c4c9d34c3f4e705481ec5903640e16f00ceeaf67a62fe6/OpenXbox/xcloud-python/issues/2
og:image:altProblem ICE (Interactive Connectivity Establishment) / STUN is used to negotiate communication-channel between NAT'd hosts. Its currently only used for xhomestreaming. The initial ICE-message comes...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernametuxuser
hostnamegithub.com
expected-hostnamegithub.com
Nonec0818105fa276287e9369cfdefa0a0fa7953719791ceff9b94d69623c0a4fe8a
turbo-cache-controlno-preview
go-importgithub.com/OpenXbox/xcloud-python git https://github.com/OpenXbox/xcloud-python.git
octolytics-dimension-user_id31669505
octolytics-dimension-user_loginOpenXbox
octolytics-dimension-repository_id268237406
octolytics-dimension-repository_nwoOpenXbox/xcloud-python
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id268237406
octolytics-dimension-repository_network_root_nwoOpenXbox/xcloud-python
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release715890fa442134f528fb422ab338c0ad55c7a025
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/OpenXbox/xcloud-python/issues/2#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2FOpenXbox%2Fxcloud-python%2Fissues%2F2
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2FOpenXbox%2Fxcloud-python%2Fissues%2F2
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=OpenXbox%2Fxcloud-python
Reloadhttps://patch-diff.githubusercontent.com/OpenXbox/xcloud-python/issues/2
Reloadhttps://patch-diff.githubusercontent.com/OpenXbox/xcloud-python/issues/2
Reloadhttps://patch-diff.githubusercontent.com/OpenXbox/xcloud-python/issues/2
OpenXbox https://patch-diff.githubusercontent.com/OpenXbox
xcloud-pythonhttps://patch-diff.githubusercontent.com/OpenXbox/xcloud-python
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2FOpenXbox%2Fxcloud-python
Fork 3 https://patch-diff.githubusercontent.com/login?return_to=%2FOpenXbox%2Fxcloud-python
Star 25 https://patch-diff.githubusercontent.com/login?return_to=%2FOpenXbox%2Fxcloud-python
Code https://patch-diff.githubusercontent.com/OpenXbox/xcloud-python
Issues 8 https://patch-diff.githubusercontent.com/OpenXbox/xcloud-python/issues
Pull requests 0 https://patch-diff.githubusercontent.com/OpenXbox/xcloud-python/pulls
Actions https://patch-diff.githubusercontent.com/OpenXbox/xcloud-python/actions
Projects 0 https://patch-diff.githubusercontent.com/OpenXbox/xcloud-python/projects
Security 0 https://patch-diff.githubusercontent.com/OpenXbox/xcloud-python/security
Insights https://patch-diff.githubusercontent.com/OpenXbox/xcloud-python/pulse
Code https://patch-diff.githubusercontent.com/OpenXbox/xcloud-python
Issues https://patch-diff.githubusercontent.com/OpenXbox/xcloud-python/issues
Pull requests https://patch-diff.githubusercontent.com/OpenXbox/xcloud-python/pulls
Actions https://patch-diff.githubusercontent.com/OpenXbox/xcloud-python/actions
Projects https://patch-diff.githubusercontent.com/OpenXbox/xcloud-python/projects
Security https://patch-diff.githubusercontent.com/OpenXbox/xcloud-python/security
Insights https://patch-diff.githubusercontent.com/OpenXbox/xcloud-python/pulse
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/OpenXbox/xcloud-python/issues/2
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/OpenXbox/xcloud-python/issues/2
ICE/STUN: Negotiationhttps://patch-diff.githubusercontent.com/OpenXbox/xcloud-python/issues/2#top
help wantedExtra attention is neededhttps://github.com/OpenXbox/xcloud-python/issues?q=state%3Aopen%20label%3A%22help%20wanted%22
xhomehttps://github.com/OpenXbox/xcloud-python/issues?q=state%3Aopen%20label%3A%22xhome%22
https://github.com/tuxuser
https://github.com/tuxuser
tuxuserhttps://github.com/tuxuser
on Sep 29, 2020https://github.com/OpenXbox/xcloud-python/issues/2#issue-711493015
https://github.com/tuxuser/xcloud/blob/8295d2c86bf8ece56dbbd02c1f749a4426955bcb/ice.py#L26-L37https://github.com/tuxuser/xcloud/blob/8295d2c86bf8ece56dbbd02c1f749a4426955bcb/ice.py#L26-L37
aiortchttps://github.com/aiortc/aiortc
aioice (used by aiortc)https://github.com/aiortc/aioice
RFC 4380 Teredo: Tunneling IPv6 over UDP through Network Address Translations (NATs)https://datatracker.ietf.org/doc/rfc4380/
RFC 5245 Interactive Connectivity Establishment (ICE): A Protocol for Network Address Translator (NAT) Traversal for Offer/Answer Protocolshttps://tools.ietf.org/html/rfc5245
RFC 5839 Session Traversal Utilities for NAT (STUN)https://tools.ietf.org/html/rfc5389
RFC 5991 Teredo Security Updateshttps://datatracker.ietf.org/doc/rfc5991/
RFC 6081 Teredo Extensionshttps://datatracker.ietf.org/doc/rfc6081/
RFC 8445 Interactive Connectivity Establishment (ICE): A Protocol for Network Address Translator (NAT) Traversalhttps://tools.ietf.org/html/rfc8445
help wantedExtra attention is neededhttps://github.com/OpenXbox/xcloud-python/issues?q=state%3Aopen%20label%3A%22help%20wanted%22
xhomehttps://github.com/OpenXbox/xcloud-python/issues?q=state%3Aopen%20label%3A%22xhome%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.