ObjFW  Diff

Differences From Artifact [91b9fa295c]:

To Artifact [6176995a50]:


56
57
58
59
60
61
62


63
64
65
66
67
68
69

	@try {
		[sockServer bindToPath: path];
	} @catch (OFBindSocketFailedException *e) {
		switch (e.errNo) {
		case EAFNOSUPPORT:
		case EPERM:


			OTSkip(@"UNIX sequenced packet sockets unsupported");
		default:
			@throw e;
		}
	}

	@try {







>
>







56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71

	@try {
		[sockServer bindToPath: path];
	} @catch (OFBindSocketFailedException *e) {
		switch (e.errNo) {
		case EAFNOSUPPORT:
		case EPERM:
		case EPROTONOSUPPORT:
		case ESOCKTNOSUPPORT:
			OTSkip(@"UNIX sequenced packet sockets unsupported");
		default:
			@throw e;
		}
	}

	@try {