78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
ssize_t ret;
if (sock == INVALID_SOCKET)
@throw [OFNotConnectedException newWithClass: isa];
if ((ret = send(sock, buf, size, 0)) == -1)
@throw [OFWriteFailedException newWithClass: isa
andSize: size];
/* This is safe, as we already checked for -1 */
return ret;
}
- (size_t)writeCString: (const char*)str
{
|
|
|
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
ssize_t ret;
if (sock == INVALID_SOCKET)
@throw [OFNotConnectedException newWithClass: isa];
if ((ret = send(sock, buf, size, 0)) == -1)
@throw [OFWriteFailedException newWithClass: isa
size: size];
/* This is safe, as we already checked for -1 */
return ret;
}
- (size_t)writeCString: (const char*)str
{
|
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
return self;
}
- connectToService: (OFString*)service
onNode: (OFString*)node
{
@throw [OFNotImplementedException newWithClass: isa
andSelector: _cmd];
}
- bindService: (OFString*)service
onNode: (OFString*)node
withFamily: (int)family
{
@throw [OFNotImplementedException newWithClass: isa
andSelector: _cmd];
}
- listenWithBackLog: (int)backlog
{
@throw [OFNotImplementedException newWithClass: isa
andSelector: _cmd];
}
- listen
{
@throw [OFNotImplementedException newWithClass: isa
andSelector: _cmd];
}
- (OFSocket*)accept
{
@throw [OFNotImplementedException newWithClass: isa
andSelector: _cmd];
}
- enableKeepAlives: (BOOL)enable
{
@throw [OFNotImplementedException newWithClass: isa
andSelector: _cmd];
}
- close
{
@throw [OFNotImplementedException newWithClass: isa
andSelector: _cmd];
}
@end
|
|
|
|
|
|
|
|
|
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
return self;
}
- connectToService: (OFString*)service
onNode: (OFString*)node
{
@throw [OFNotImplementedException newWithClass: isa
selector: _cmd];
}
- bindService: (OFString*)service
onNode: (OFString*)node
withFamily: (int)family
{
@throw [OFNotImplementedException newWithClass: isa
selector: _cmd];
}
- listenWithBackLog: (int)backlog
{
@throw [OFNotImplementedException newWithClass: isa
selector: _cmd];
}
- listen
{
@throw [OFNotImplementedException newWithClass: isa
selector: _cmd];
}
- (OFSocket*)accept
{
@throw [OFNotImplementedException newWithClass: isa
selector: _cmd];
}
- enableKeepAlives: (BOOL)enable
{
@throw [OFNotImplementedException newWithClass: isa
selector: _cmd];
}
- close
{
@throw [OFNotImplementedException newWithClass: isa
selector: _cmd];
}
@end
|