Bug 198417
| Summary: | Package vim lacks IPv6 support | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Peter Vrabec <pvrabec> | ||||
| Component: | vim | Assignee: | Karsten Hopp <karsten> | ||||
| Status: | CLOSED UPSTREAM | QA Contact: | David Lawrence <dkl> | ||||
| Severity: | medium | Docs Contact: | |||||
| Priority: | medium | ||||||
| Version: | rawhide | CC: | jpazdziora, mbacovsk | ||||
| Target Milestone: | --- | ||||||
| Target Release: | --- | ||||||
| Hardware: | All | ||||||
| OS: | Linux | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | Environment: | ||||||
| Last Closed: | 2006-08-03 13:58:48 UTC | Type: | --- | ||||
| Regression: | --- | Mount Type: | --- | ||||
| Documentation: | --- | CRM: | |||||
| Verified Versions: | Category: | --- | |||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||
| Embargoed: | |||||||
| Bug Depends On: | |||||||
| Bug Blocks: | 195271 | ||||||
| Attachments: |
|
||||||
Created attachment 132232 [details]
Patch to remove IPv4 specific code from integration and netbeans in vim
Please consider the attached patch.
I did not test the patch beyond compile. Also note that with the getaddrinfo
approach, there are multiple socket and connect calls caused by multiple values
returned, which adds to the 36 retries in the original code. Maybe the number
of retries might need to be reconsidered? Please take the patch only as a hint
of how the code might need to change.
workshop and netbeans stuff is currently disabled in FC-devel, all those F_INET matches from the original report aren't in use in our vim package. I'll notify upstream of the proposed patch, but it definitely needs some more work p.e. as it doesn't patch autofoo stuff for --enable-ipv6/--disable-ipv6 |
This bug was reported automaticaly in connection with IPv6 project. Our aim is to support IPv6 in all Fedora Core packages so FC6 and RHEL5 will be ready for IPv6. This package seems to lack IPv6 support as is illustrated in attached log. Here follows part of scanning log (grep -r F_INET *)/up to 30 lines: /vim70/src/netbeans.c:324: if ((sd = (NBSOCK)socket(AF_INET, SOCK_STREAM, 0)) == (NBSOCK)-1) /vim70/src/netbeans.c:333: server.sin_family = AF_INET; /vim70/src/netbeans.c:366: if ((sd = (NBSOCK)socket(AF_INET, SOCK_STREAM, 0)) == (NBSOCK)-1) /vim70/src/integration.c:656: if ((sd = socket(AF_INET, SOCK_STREAM, 0)) == -1) { /vim70/src/integration.c:664: server.sin_family = AF_INET; /vim70/src/integration.c:686: if ((sd = socket(AF_INET, SOCK_STREAM, 0)) == -1) {