@@ -135,7 +135,7 @@ extern SDL_DECLSPEC bool SDLCALL NET_Init(void);
135
135
*
136
136
* \threadsafety It is safe to call this function from any thread.
137
137
*
138
- * \since This function is available since SDL_Net 3.0.0.
138
+ * \since This function is available since SDL_net 3.0.0.
139
139
*
140
140
* \sa NET_Init
141
141
*/
@@ -154,10 +154,10 @@ extern SDL_DECLSPEC void SDLCALL NET_Quit(void);
154
154
* also used to decide what network interface to use when creating a server.
155
155
*
156
156
* These are intended to be protocol-independent; a given address might be for
157
- * IPv4, IPv6, or something more esoteric. SDL_Net attempts to hide the
157
+ * IPv4, IPv6, or something more esoteric. SDL_net attempts to hide the
158
158
* differences.
159
159
*
160
- * \since This datatype is available since SDL_Net 3.0.0.
160
+ * \since This datatype is available since SDL_net 3.0.0.
161
161
*
162
162
* \sa NET_ResolveHostname
163
163
* \sa NET_GetLocalAddresses
@@ -195,7 +195,7 @@ typedef struct NET_Address NET_Address;
195
195
*
196
196
* \threadsafety It is safe to call this function from any thread.
197
197
*
198
- * \since This function is available since SDL_Net 3.0.0.
198
+ * \since This function is available since SDL_net 3.0.0.
199
199
*
200
200
* \sa NET_WaitUntilResolved
201
201
* \sa NET_GetAddressStatus
@@ -240,7 +240,7 @@ extern SDL_DECLSPEC NET_Address * SDLCALL NET_ResolveHostname(const char *host);
240
240
* \threadsafety It is safe to call this function from any thread, and several
241
241
* threads can block on the same address simultaneously.
242
242
*
243
- * \since This function is available since SDL_Net 3.0.0.
243
+ * \since This function is available since SDL_net 3.0.0.
244
244
*
245
245
* \sa NET_GetAddressStatus
246
246
*/
@@ -269,7 +269,7 @@ extern SDL_DECLSPEC int SDLCALL NET_WaitUntilResolved(NET_Address *address, Sint
269
269
*
270
270
* \threadsafety It is safe to call this function from any thread.
271
271
*
272
- * \since This function is available since SDL_Net 3.0.0.
272
+ * \since This function is available since SDL_net 3.0.0.
273
273
*
274
274
* \sa NET_WaitUntilResolved
275
275
*/
@@ -297,7 +297,7 @@ extern SDL_DECLSPEC int SDLCALL NET_GetAddressStatus(NET_Address *address);
297
297
*
298
298
* \threadsafety It is safe to call this function from any thread.
299
299
*
300
- * \since This function is available since SDL_Net 3.0.0.
300
+ * \since This function is available since SDL_net 3.0.0.
301
301
*
302
302
* \sa NET_GetAddressStatus
303
303
* \sa NET_WaitUntilResolved
@@ -338,7 +338,7 @@ extern SDL_DECLSPEC const char * SDLCALL NET_GetAddressString(NET_Address *addre
338
338
*
339
339
* \threadsafety It is safe to call this function from any thread.
340
340
*
341
- * \since This function is available since SDL_Net 3.0.0.
341
+ * \since This function is available since SDL_net 3.0.0.
342
342
*/
343
343
extern SDL_DECLSPEC NET_Address * SDLCALL NET_RefAddress (NET_Address * address );
344
344
@@ -363,7 +363,7 @@ extern SDL_DECLSPEC NET_Address *SDLCALL NET_RefAddress(NET_Address *address);
363
363
*
364
364
* \threadsafety It is safe to call this function from any thread.
365
365
*
366
- * \since This function is available since SDL_Net 3.0.0.
366
+ * \since This function is available since SDL_net 3.0.0.
367
367
*/
368
368
extern SDL_DECLSPEC void SDLCALL NET_UnrefAddress (NET_Address * address );
369
369
@@ -394,7 +394,7 @@ extern SDL_DECLSPEC void SDLCALL NET_UnrefAddress(NET_Address *address);
394
394
*
395
395
* \threadsafety It is safe to call this function from any thread.
396
396
*
397
- * \since This function is available since SDL_Net 3.0.0.
397
+ * \since This function is available since SDL_net 3.0.0.
398
398
*/
399
399
extern SDL_DECLSPEC void SDLCALL NET_SimulateAddressResolutionLoss (int percent_loss );
400
400
@@ -410,7 +410,7 @@ extern SDL_DECLSPEC void SDLCALL NET_SimulateAddressResolutionLoss(int percent_l
410
410
*
411
411
* \threadsafety It is safe to call this function from any thread.
412
412
*
413
- * \since This function is available since SDL_Net 3.0.0.
413
+ * \since This function is available since SDL_net 3.0.0.
414
414
*/
415
415
extern SDL_DECLSPEC int SDLCALL NET_CompareAddresses (const NET_Address * a , const NET_Address * b );
416
416
@@ -445,7 +445,7 @@ extern SDL_DECLSPEC int SDLCALL NET_CompareAddresses(const NET_Address *a, const
445
445
*
446
446
* \threadsafety It is safe to call this function from any thread.
447
447
*
448
- * \since This function is available since SDL_Net 3.0.0.
448
+ * \since This function is available since SDL_net 3.0.0.
449
449
*/
450
450
extern SDL_DECLSPEC NET_Address * * SDLCALL NET_GetLocalAddresses (int * num_addresses );
451
451
@@ -464,7 +464,7 @@ extern SDL_DECLSPEC NET_Address **SDLCALL NET_GetLocalAddresses(int *num_address
464
464
*
465
465
* \threadsafety It is safe to call this function from any thread.
466
466
*
467
- * \since This function is available since SDL_Net 3.0.0.
467
+ * \since This function is available since SDL_net 3.0.0.
468
468
*/
469
469
extern SDL_DECLSPEC void SDLCALL NET_FreeLocalAddresses (NET_Address * * addresses );
470
470
@@ -482,7 +482,7 @@ extern SDL_DECLSPEC void SDLCALL NET_FreeLocalAddresses(NET_Address **addresses)
482
482
* different clients. Each of these connections communicate over a separate
483
483
* stream socket.
484
484
*
485
- * \since This datatype is available since SDL_Net 3.0.0.
485
+ * \since This datatype is available since SDL_net 3.0.0.
486
486
*
487
487
* \sa NET_CreateClient
488
488
* \sa NET_WriteToStreamSocket
@@ -535,7 +535,7 @@ typedef struct NET_StreamSocket NET_StreamSocket;
535
535
*
536
536
* \threadsafety It is safe to call this function from any thread.
537
537
*
538
- * \since This function is available since SDL_Net 3.0.0.
538
+ * \since This function is available since SDL_net 3.0.0.
539
539
*
540
540
* \sa NET_WaitUntilConnected
541
541
* \sa NET_GetConnectionStatus
@@ -582,7 +582,7 @@ extern SDL_DECLSPEC NET_StreamSocket * SDLCALL NET_CreateClient(NET_Address *add
582
582
* mechanism. However, different threads may access different
583
583
* socket at the same time without problems.
584
584
*
585
- * \since This function is available since SDL_Net 3.0.0.
585
+ * \since This function is available since SDL_net 3.0.0.
586
586
*
587
587
* \sa NET_GetConnectionStatus
588
588
*/
@@ -598,7 +598,7 @@ extern SDL_DECLSPEC int SDLCALL NET_WaitUntilConnected(NET_StreamSocket *sock, S
598
598
* connection, will provide the app with a stream socket to send and receive
599
599
* data over that connection.
600
600
*
601
- * \since This datatype is available since SDL_Net 3.0.0.
601
+ * \since This datatype is available since SDL_net 3.0.0.
602
602
*
603
603
* \sa NET_CreateServer
604
604
*/
@@ -644,7 +644,7 @@ typedef struct NET_Server NET_Server;
644
644
*
645
645
* \threadsafety It is safe to call this function from any thread.
646
646
*
647
- * \since This function is available since SDL_Net 3.0.0.
647
+ * \since This function is available since SDL_net 3.0.0.
648
648
*
649
649
* \sa NET_GetLocalAddresses
650
650
* \sa NET_AcceptClient
@@ -687,7 +687,7 @@ extern SDL_DECLSPEC NET_Server * SDLCALL NET_CreateServer(NET_Address *addr, Uin
687
687
* mechanism. However, different threads may access different
688
688
* servers at the same time without problems.
689
689
*
690
- * \since This function is available since SDL_Net 3.0.0.
690
+ * \since This function is available since SDL_net 3.0.0.
691
691
*
692
692
* \sa NET_WaitUntilInputAvailable
693
693
* \sa NET_DestroyStreamSocket
@@ -710,7 +710,7 @@ extern SDL_DECLSPEC bool SDLCALL NET_AcceptClient(NET_Server *server, NET_Stream
710
710
* mechanism. However, different threads may access different
711
711
* servers at the same time without problems.
712
712
*
713
- * \since This function is available since SDL_Net 3.0.0.
713
+ * \since This function is available since SDL_net 3.0.0.
714
714
*
715
715
* \sa NET_CreateServer
716
716
*/
@@ -731,7 +731,7 @@ extern SDL_DECLSPEC void SDLCALL NET_DestroyServer(NET_Server *server);
731
731
*
732
732
* \threadsafety It is safe to call this function from any thread.
733
733
*
734
- * \since This function is available since SDL_Net 3.0.0.
734
+ * \since This function is available since SDL_net 3.0.0.
735
735
*/
736
736
extern SDL_DECLSPEC NET_Address * SDLCALL NET_GetStreamSocketAddress (NET_StreamSocket * sock );
737
737
@@ -766,7 +766,7 @@ extern SDL_DECLSPEC NET_Address * SDLCALL NET_GetStreamSocketAddress(NET_StreamS
766
766
* mechanism. However, different threads may access different
767
767
* sockets at the same time without problems.
768
768
*
769
- * \since This function is available since SDL_Net 3.0.0.
769
+ * \since This function is available since SDL_net 3.0.0.
770
770
*
771
771
* \sa NET_WaitUntilConnected
772
772
*/
@@ -811,7 +811,7 @@ extern SDL_DECLSPEC int SDLCALL NET_GetConnectionStatus(NET_StreamSocket *sock);
811
811
* mechanism. However, different threads may access different
812
812
* sockets at the same time without problems.
813
813
*
814
- * \since This function is available since SDL_Net 3.0.0.
814
+ * \since This function is available since SDL_net 3.0.0.
815
815
*
816
816
* \sa NET_GetStreamSocketPendingWrites
817
817
* \sa NET_WaitUntilStreamSocketDrained
@@ -844,7 +844,7 @@ extern SDL_DECLSPEC bool SDLCALL NET_WriteToStreamSocket(NET_StreamSocket *sock,
844
844
* mechanism. However, different threads may access different
845
845
* sockets at the same time without problems.
846
846
*
847
- * \since This function is available since SDL_Net 3.0.0.
847
+ * \since This function is available since SDL_net 3.0.0.
848
848
*
849
849
* \sa NET_WriteToStreamSocket
850
850
* \sa NET_WaitUntilStreamSocketDrained
@@ -885,7 +885,7 @@ extern SDL_DECLSPEC int SDLCALL NET_GetStreamSocketPendingWrites(NET_StreamSocke
885
885
* mechanism. However, different threads may access different
886
886
* sockets at the same time without problems.
887
887
*
888
- * \since This function is available since SDL_Net 3.0.0.
888
+ * \since This function is available since SDL_net 3.0.0.
889
889
*
890
890
* \sa NET_WriteToStreamSocket
891
891
* \sa NET_GetStreamSocketPendingWrites
@@ -937,7 +937,7 @@ extern SDL_DECLSPEC int SDLCALL NET_WaitUntilStreamSocketDrained(NET_StreamSocke
937
937
* mechanism. However, different threads may access different
938
938
* sockets at the same time without problems.
939
939
*
940
- * \since This function is available since SDL_Net 3.0.0.
940
+ * \since This function is available since SDL_net 3.0.0.
941
941
*
942
942
* \sa NET_WriteToStreamSocket
943
943
*/
@@ -978,7 +978,7 @@ extern SDL_DECLSPEC int SDLCALL NET_ReadFromStreamSocket(NET_StreamSocket *sock,
978
978
*
979
979
* \threadsafety It is safe to call this function from any thread.
980
980
*
981
- * \since This function is available since SDL_Net 3.0.0.
981
+ * \since This function is available since SDL_net 3.0.0.
982
982
*/
983
983
extern SDL_DECLSPEC void SDLCALL NET_SimulateStreamPacketLoss (NET_StreamSocket * sock , int percent_loss );
984
984
@@ -1002,7 +1002,7 @@ extern SDL_DECLSPEC void SDLCALL NET_SimulateStreamPacketLoss(NET_StreamSocket *
1002
1002
* mechanism. However, different threads may access different
1003
1003
* sockets at the same time without problems.
1004
1004
*
1005
- * \since This function is available since SDL_Net 3.0.0.
1005
+ * \since This function is available since SDL_net 3.0.0.
1006
1006
*
1007
1007
* \sa NET_CreateClient
1008
1008
* \sa NET_AcceptClient
@@ -1031,7 +1031,7 @@ extern SDL_DECLSPEC void SDLCALL NET_DestroyStreamSocket(NET_StreamSocket *sock)
1031
1031
* gets there, even if later packets get there first, and maybe it doesn't get
1032
1032
* there at all, and you don't know when anything of this happens by default.
1033
1033
*
1034
- * \since This datatype is available since SDL_Net 3.0.0.
1034
+ * \since This datatype is available since SDL_net 3.0.0.
1035
1035
*
1036
1036
* \sa NET_CreateDatagramSocket
1037
1037
* \sa NET_SendDatagram
@@ -1042,7 +1042,7 @@ typedef struct NET_DatagramSocket NET_DatagramSocket;
1042
1042
/**
1043
1043
* The data provided for new incoming packets from NET_ReceiveDatagram().
1044
1044
*
1045
- * \since This datatype is available since SDL_Net 3.0.0.
1045
+ * \since This datatype is available since SDL_net 3.0.0.
1046
1046
*
1047
1047
* \sa NET_ReceiveDatagram
1048
1048
* \sa NET_DestroyDatagram
@@ -1108,7 +1108,7 @@ typedef struct NET_Datagram
1108
1108
*
1109
1109
* \threadsafety It is safe to call this function from any thread.
1110
1110
*
1111
- * \since This function is available since SDL_Net 3.0.0.
1111
+ * \since This function is available since SDL_net 3.0.0.
1112
1112
*
1113
1113
* \sa NET_GetLocalAddresses
1114
1114
* \sa NET_DestroyDatagramSocket
@@ -1161,7 +1161,7 @@ extern SDL_DECLSPEC NET_DatagramSocket * SDLCALL NET_CreateDatagramSocket(NET_Ad
1161
1161
* mechanism. However, different threads may access different
1162
1162
* sockets at the same time without problems.
1163
1163
*
1164
- * \since This function is available since SDL_Net 3.0.0.
1164
+ * \since This function is available since SDL_net 3.0.0.
1165
1165
*
1166
1166
* \sa NET_ReceiveDatagram
1167
1167
*/
@@ -1208,7 +1208,7 @@ extern SDL_DECLSPEC bool SDLCALL NET_SendDatagram(NET_DatagramSocket *sock, NET_
1208
1208
* mechanism. However, different threads may access different
1209
1209
* sockets at the same time without problems.
1210
1210
*
1211
- * \since This function is available since SDL_Net 3.0.0.
1211
+ * \since This function is available since SDL_net 3.0.0.
1212
1212
*
1213
1213
* \sa NET_SendDatagram
1214
1214
* \sa NET_DestroyDatagram
@@ -1233,7 +1233,7 @@ extern SDL_DECLSPEC bool SDLCALL NET_ReceiveDatagram(NET_DatagramSocket *sock, N
1233
1233
*
1234
1234
* \threadsafety It is safe to call this function from any thread.
1235
1235
*
1236
- * \since This function is available since SDL_Net 3.0.0.
1236
+ * \since This function is available since SDL_net 3.0.0.
1237
1237
*/
1238
1238
extern SDL_DECLSPEC void SDLCALL NET_DestroyDatagram (NET_Datagram * dgram );
1239
1239
@@ -1266,7 +1266,7 @@ extern SDL_DECLSPEC void SDLCALL NET_DestroyDatagram(NET_Datagram *dgram);
1266
1266
*
1267
1267
* \threadsafety It is safe to call this function from any thread.
1268
1268
*
1269
- * \since This function is available since SDL_Net 3.0.0.
1269
+ * \since This function is available since SDL_net 3.0.0.
1270
1270
*/
1271
1271
extern SDL_DECLSPEC void SDLCALL NET_SimulateDatagramPacketLoss (NET_DatagramSocket * sock , int percent_loss );
1272
1272
@@ -1290,7 +1290,7 @@ extern SDL_DECLSPEC void SDLCALL NET_SimulateDatagramPacketLoss(NET_DatagramSock
1290
1290
* mechanism. However, different threads may access different
1291
1291
* sockets at the same time without problems.
1292
1292
*
1293
- * \since This function is available since SDL_Net 3.0.0.
1293
+ * \since This function is available since SDL_net 3.0.0.
1294
1294
*
1295
1295
* \sa NET_CreateDatagramSocket
1296
1296
* \sa NET_SendDatagram
@@ -1343,7 +1343,7 @@ extern SDL_DECLSPEC void SDLCALL NET_DestroyDatagramSocket(NET_DatagramSocket *s
1343
1343
* mechanism. However, different threads may access different
1344
1344
* sockets at the same time without problems.
1345
1345
*
1346
- * \since This function is available since SDL_Net 3.0.0.
1346
+ * \since This function is available since SDL_net 3.0.0.
1347
1347
*
1348
1348
* \sa NET_CreateDatagramSocket
1349
1349
* \sa NET_SendDatagram
0 commit comments