summaryrefslogtreecommitdiff
path: root/lib/tsocket
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2023-04-13 13:19:05 +0200
committerAndreas Schneider <asn@cryptomilk.org>2023-04-14 05:25:33 +0000
commit89d5c0dc5c709fef5d64715ab8a288b86db6aaca (patch)
tree42171f46ec8afa90e53336b4bceff46f4a9a9048 /lib/tsocket
parent6eed0c128ce4d42409226a48dba147a22e2acacf (diff)
downloadsamba-89d5c0dc5c709fef5d64715ab8a288b86db6aaca.tar.gz
lib:tsocket: Fix code spelling
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Diffstat (limited to 'lib/tsocket')
-rw-r--r--lib/tsocket/tsocket.h4
-rw-r--r--lib/tsocket/tsocket_guide.txt4
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/tsocket/tsocket.h b/lib/tsocket/tsocket.h
index d3cde99bf5a..cf95d8bec34 100644
--- a/lib/tsocket/tsocket.h
+++ b/lib/tsocket/tsocket.h
@@ -93,7 +93,7 @@ struct iovec;
* ipv4:192.168.1.1:143
*
* Callers should not try to parse the string! The should use additional methods
- * of the specific tsocket_address implemention to get more details.
+ * of the specific tsocket_address implementation to get more details.
*
* @param[in] addr The address to convert.
*
@@ -1251,7 +1251,7 @@ int tstream_readv_pdu_queue_recv(struct tevent_req *req, int *perrno);
*
* This function queues an iovector for sending to destination through an
* existing stream socket. The async callback is triggered when the whole
- * vectror has been delivered to the underlying system socket.
+ * vector has been delivered to the underlying system socket.
*
* The caller needs to make sure that all non-scalar input parameters hang
* around for the whole lifetime of the request.
diff --git a/lib/tsocket/tsocket_guide.txt b/lib/tsocket/tsocket_guide.txt
index 7c925d4f1db..1b560567001 100644
--- a/lib/tsocket/tsocket_guide.txt
+++ b/lib/tsocket/tsocket_guide.txt
@@ -246,7 +246,7 @@ abstracted socket.
(Remember at the low level there is always only one IO in a specific
direction allowed, only one tdgram_sendto_send() at a time).
-Some helpers that use 'tevent_queue' are avilable to simplify handling
+Some helpers that use 'tevent_queue' are available to simplify handling
multiple IO requests. The functions just get a 'queue' argument and
internally serialize all operations.
@@ -468,7 +468,7 @@ Virtual Sockets
===============
The abstracted layout of tdgram_context and tstream_context
-allow implementations arround virtual sockets for encrypted tunnels
+allow implementations around virtual sockets for encrypted tunnels
(like TLS, SASL or GSSAPI) or named pipes over smb.
Named Pipe Auth (NPA) Sockets