Home
last modified time | relevance | path

Searched defs:conn (Results 1 – 25 of 10328) sorted by relevance

12345678910>>...414

/dports/net-im/coyim/coyim-0.3.11/xmpp/
H A Dconnection.go29 type conn struct { struct
30 config data.Config
32 in *xml.Decoder
33 out io.Writer
35 keepaliveOut io.Writer
37 jid string
38 originDomain string
40 serverAddress string
42 rand io.Reader
43 lock sync.Mutex
[all …]
/dports/www/h2o-devel/h2o-dcc7134/t/00unit/lib/handler/
H A Dfile.c271 h2o_loopback_conn_t *conn = h2o_loopback_create(&ctx, ctx.globalconf->hosts); in test_if_modified_since() local
288 h2o_loopback_conn_t *conn = h2o_loopback_create(&ctx, ctx.globalconf->hosts); in test_if_modified_since() local
300 h2o_loopback_conn_t *conn = h2o_loopback_create(&ctx, ctx.globalconf->hosts); in test_if_modified_since() local
311 h2o_loopback_conn_t *conn = h2o_loopback_create(&ctx, ctx.globalconf->hosts); in test_if_modified_since() local
329 h2o_loopback_conn_t *conn = h2o_loopback_create(&ctx, ctx.globalconf->hosts); in test_if_match() local
345 h2o_loopback_conn_t *conn = h2o_loopback_create(&ctx, ctx.globalconf->hosts); in test_if_match() local
365 h2o_loopback_conn_t *conn = h2o_loopback_create(&ctx, ctx.globalconf->hosts); in test_if_range() local
387 h2o_loopback_conn_t *conn = h2o_loopback_create(&ctx, ctx.globalconf->hosts); in test_if_range() local
405 h2o_loopback_conn_t *conn = h2o_loopback_create(&ctx, ctx.globalconf->hosts); in test_if_range() local
416 h2o_loopback_conn_t *conn = h2o_loopback_create(&ctx, ctx.globalconf->hosts); in test_if_range() local
[all …]
/dports/databases/twemproxy/twemproxy-0.5.0/src/
H A Dnc_connection.h41 struct conn { struct
55 conn_recv_t recv; /* recv (read) handler */ argument
57 conn_recv_done_t recv_done; /* read done handler */ argument
58 conn_send_t send; /* send (write) handler */ argument
60 conn_send_done_t send_done; /* write done handler */ argument
61 conn_close_t close; /* close handler */ argument
62 conn_active_t active; /* active? handler */ argument
78 err_t err; /* connection errno */ argument
86 unsigned connecting:1; /* connecting? */ argument
87 unsigned connected:1; /* connected? */ argument
[all …]
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/concourse/dex/storage/etcd/
H A Detcd.go30 type conn struct { struct
31 db *clientv3.Client
32 logger log.Logger
35 func (c *conn) Close() error {
112 func (c *conn) DeleteAuthRequest(id string) error {
131 func (c *conn) DeleteAuthCode(id string) error {
171 func (c *conn) DeleteRefresh(id string) error {
194 func (c *conn) CreateClient(cli storage.Client) error {
225 func (c *conn) DeleteClient(id string) error {
279 func (c *conn) DeletePassword(email string) error {
[all …]
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/libp2p/go-libp2p/p2p/net/mock/
H A Dmock_conn.go23 type conn struct { struct
24 notifLk sync.Mutex
26 id int64
28 local peer.ID
29 remote peer.ID
37 net *peernet
38 link *link
40 streams list.List
41 stat network.Stat
43 pairProc, connProc process.Process
[all …]
/dports/databases/p5-Memcached-libmemcached/Memcached-libmemcached-1.001801/src/libmemcached/clients/
H A Dms_conn.h118 typedef struct conn struct
123 int state; /* state of the connection */ argument
124 struct event event; /* event for libevent */
127 bool change_sfd; /* whether change sfd */
129 int *tcpsfd; /* TCP sock array */
131 uint32_t alive_sfds; /* alive socks */
134 ms_cmdstat_t precmd; /* previous command state */
135 ms_cmdstat_t currcmd; /* current command state */
162 bool udp; /* is this is a UDP "connection" */ argument
167 socklen_t srv_recv_addr_size;
[all …]
/dports/databases/libmemcached/libmemcached-1.0.18/clients/
H A Dms_conn.h118 typedef struct conn struct
123 int state; /* state of the connection */ argument
124 struct event event; /* event for libevent */
127 bool change_sfd; /* whether change sfd */
129 int *tcpsfd; /* TCP sock array */
131 uint32_t alive_sfds; /* alive socks */
134 ms_cmdstat_t precmd; /* previous command state */
135 ms_cmdstat_t currcmd; /* current command state */
162 bool udp; /* is this is a UDP "connection" */ argument
167 socklen_t srv_recv_addr_size;
[all …]
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/go.elastic.co/apm/module/apmsql/
H A Dconn.go46 type conn struct { struct
47 driver.Conn
48 connGo110
49 driver *tracingDriver
50 dsnInfo DSNInfo
52 namedValueChecker namedValueChecker
53 pinger driver.Pinger
54 queryer driver.Queryer
57 execer driver.Execer
59 connBeginTx driver.ConnBeginTx
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/vendor/github.com/zenazn/goji/graceful/listener/
H A Dconn.go11 type conn struct { struct
12 net.Conn
14 shard *shard
15 mode mode
19 closed bool // connection is closed
26 func (c *conn) init() error {
64 func (c *conn) Close() error {
94 func (c *conn) markIdle() {
112 func (c *conn) markInUse() {
122 func (c *conn) closeIfIdle() error {
[all …]
/dports/security/s2n/s2n-tls-1.1.2/tls/
H A Ds2n_connection.c61 static int s2n_connection_new_hmacs(struct s2n_connection *conn) in s2n_connection_new_hmacs()
72 static int s2n_connection_init_hmacs(struct s2n_connection *conn) in s2n_connection_init_hmacs()
165 static int s2n_connection_free_keys(struct s2n_connection *conn) in s2n_connection_free_keys()
275 static int s2n_connection_wipe_io(struct s2n_connection *conn) in s2n_connection_wipe_io()
306 struct s2n_connection *conn = data; in s2n_default_verify_host() local
335 int s2n_connection_free(struct s2n_connection *conn) in s2n_connection_free()
447 void *s2n_connection_get_ctx(struct s2n_connection *conn) in s2n_connection_get_ctx()
493 int s2n_connection_wipe(struct s2n_connection *conn) in s2n_connection_wipe()
1029 int s2n_connection_get_alert(struct s2n_connection *conn) in s2n_connection_get_alert()
1057 const char *s2n_get_server_name(struct s2n_connection *conn) in s2n_get_server_name()
[all …]
/dports/net-p2p/bitmark/bitmarkd-0.13.3/vendor/github.com/btcsuite/btcd/release/
H A DREADME.md26 of the release binaries for each supported operating system and architecture,
27 and a manifest file containing the hash of each archive.
29 ## Verifying a Release
32 Before this version of `go`, one had to trust the release manager(s) to build the
35 match exactly that of the release binaries produced by said third parties.
38 installed by default in most Unix systems): `gpg`/`gpg2`, `shashum`, and
43 1. Acquire the archive containing the release binaries for one's specific
47 manifest-<TAG>.txt.sig`. This will require obtaining the PGP keys which
62 6. Obtain a copy of `btcd`'s source code with `git clone
68 8. Extract the archive found in the `btcd-<TAG>` directory created by the
[all …]
/dports/games/automuteus/automuteus-6.15.2/vendor/github.com/googollee/go-socket.io/engineio/transport/websocket/
H A Dconn.go16 type conn struct { struct
17 url url.URL
18 remoteHeader http.Header
19 ws wrapper
20 closed chan struct{}
21 closeOnce sync.Once
22 base.FrameWriter
23 base.FrameReader
39 func (c *conn) URL() url.URL {
47 func (c *conn) LocalAddr() net.Addr {
[all …]
/dports/security/snowflake-tor/snowflake-ead5a960d7fa19dc890ccbfc0765c5ab6629eaa9/vendor/github.com/pion/dtls/v2/internal/net/dpipe/
H A Ddpipe.go41 type conn struct { struct
42 rCh chan []byte
43 wCh chan []byte
44 closed chan struct{}
45 closing chan struct{}
46 closeOnce sync.Once
48 readDeadline *deadline.Deadline
49 writeDeadline *deadline.Deadline
55 func (c *conn) SetDeadline(t time.Time) error {
105 func (c *conn) cleanWriteBuffer() {
[all …]
/dports/databases/timescaledb-backup/timescaledb-backup-0.1.1/vendor/github.com/docker/distribution/vendor/github.com/garyburd/redigo/redis/
H A Dconn.go30 type conn struct { struct
33 mu sync.Mutex
34 pending int
35 err error
36 conn net.Conn argument
39 readTimeout time.Duration
40 br *bufio.Reader
43 writeTimeout time.Duration
44 bw *bufio.Writer
48 lenScratch [32]byte
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/vendor/github.com/docker/distribution/vendor/github.com/garyburd/redigo/redis/
H A Dconn.go30 type conn struct { struct
33 mu sync.Mutex
34 pending int
35 err error
36 conn net.Conn argument
39 readTimeout time.Duration
40 br *bufio.Reader
43 writeTimeout time.Duration
44 bw *bufio.Writer
48 lenScratch [32]byte
[all …]
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/distribution/distribution-2.7.0/vendor/github.com/garyburd/redigo/redis/
H A Dconn.go30 type conn struct { struct
33 mu sync.Mutex
34 pending int
35 err error
36 conn net.Conn member
39 readTimeout time.Duration
40 br *bufio.Reader
43 writeTimeout time.Duration
44 bw *bufio.Writer
48 lenScratch [32]byte
[all …]
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/docker/distribution/vendor/github.com/garyburd/redigo/redis/
H A Dconn.go30 type conn struct { struct
33 mu sync.Mutex
34 pending int
35 err error
36 conn net.Conn member
39 readTimeout time.Duration
40 br *bufio.Reader
43 writeTimeout time.Duration
44 bw *bufio.Writer
48 lenScratch [32]byte
[all …]
/dports/net-mgmt/promscale/promscale-0.6.2/vendor/github.com/docker/distribution/vendor/github.com/garyburd/redigo/redis/
H A Dconn.go30 type conn struct { struct
33 mu sync.Mutex
34 pending int
35 err error
36 conn net.Conn member
39 readTimeout time.Duration
40 br *bufio.Reader
43 writeTimeout time.Duration
44 bw *bufio.Writer
48 lenScratch [32]byte
[all …]
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/docker/distribution/vendor/github.com/garyburd/redigo/redis/
H A Dconn.go30 type conn struct { struct
33 mu sync.Mutex
34 pending int
35 err error
36 conn net.Conn member
39 readTimeout time.Duration
40 br *bufio.Reader
43 writeTimeout time.Duration
44 bw *bufio.Writer
48 lenScratch [32]byte
[all …]
/dports/sysutils/helm/helm-3.5.2/vendor/github.com/docker/distribution/vendor/github.com/garyburd/redigo/redis/
H A Dconn.go30 type conn struct { struct
33 mu sync.Mutex
34 pending int
35 err error
36 conn net.Conn argument
39 readTimeout time.Duration
40 br *bufio.Reader
43 writeTimeout time.Duration
44 bw *bufio.Writer
48 lenScratch [32]byte
[all …]
/dports/games/uqm/uqm-0.8.0/src/uqm/supermelee/netplay/
H A Dnetconnection.c63 NetConnection *conn; in NetConnection_open() local
175 NetConnection_delete(NetConnection *conn) { in NetConnection_delete()
200 Netplay_doCloseCallback(NetConnection *conn) { in Netplay_doCloseCallback()
211 NetConnection_doClose(NetConnection *conn) { in NetConnection_doClose()
234 NetConnection_close(NetConnection *conn) { in NetConnection_close()
260 NetConnection_setStateData(NetConnection *conn, in NetConnection_setStateData()
276 NetConnection_getExtra(const NetConnection *conn) { in NetConnection_getExtra()
281 NetConnection_setReadyCallback(NetConnection *conn, in NetConnection_setReadyCallback()
298 NetConnection_setResetCallback(NetConnection *conn, in NetConnection_setResetCallback()
331 NetConnection_getState(const NetConnection *conn) { in NetConnection_getState()
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/docker/distribution/vendor/github.com/garyburd/redigo/redis/
H A Dconn.go30 type conn struct { struct
33 mu sync.Mutex
34 pending int
35 err error
36 conn net.Conn argument
39 readTimeout time.Duration
40 br *bufio.Reader
43 writeTimeout time.Duration
44 bw *bufio.Writer
48 lenScratch [32]byte
[all …]
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/docker/distribution/vendor/github.com/garyburd/redigo/redis/
H A Dconn.go30 type conn struct { struct
33 mu sync.Mutex
34 pending int
35 err error
36 conn net.Conn argument
39 readTimeout time.Duration
40 br *bufio.Reader
43 writeTimeout time.Duration
44 bw *bufio.Writer
48 lenScratch [32]byte
[all …]
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/docker/distribution/vendor/github.com/garyburd/redigo/redis/
H A Dconn.go30 type conn struct { struct
33 mu sync.Mutex
34 pending int
35 err error
36 conn net.Conn member
39 readTimeout time.Duration
40 br *bufio.Reader
43 writeTimeout time.Duration
44 bw *bufio.Writer
48 lenScratch [32]byte
[all …]
/dports/sysutils/helm/helm-3.5.2/vendor/github.com/garyburd/redigo/redis/
H A Dconn.go30 type conn struct { struct
33 mu sync.Mutex
34 pending int
35 err error
36 conn net.Conn member
39 readTimeout time.Duration
40 br *bufio.Reader
43 writeTimeout time.Duration
44 bw *bufio.Writer
48 lenScratch [32]byte
[all …]

12345678910>>...414