Home
last modified time | relevance | path

Searched refs:listen (Results 1 – 25 of 284) sorted by relevance

12345678910>>...12

/OK3568_Linux_fs/kernel/net/ax25/
H A Dax25_iface.c103 struct listen_struct *listen; in ax25_listen_register() local
108 if ((listen = kmalloc(sizeof(*listen), GFP_ATOMIC)) == NULL) in ax25_listen_register()
111 listen->callsign = *callsign; in ax25_listen_register()
112 listen->dev = dev; in ax25_listen_register()
115 listen->next = listen_list; in ax25_listen_register()
116 listen_list = listen; in ax25_listen_register()
126 struct listen_struct *s, *listen; in ax25_listen_release() local
129 listen = listen_list; in ax25_listen_release()
130 if (listen == NULL) { in ax25_listen_release()
135 if (ax25cmp(&listen->callsign, callsign) == 0 && listen->dev == dev) { in ax25_listen_release()
[all …]
/OK3568_Linux_fs/buildroot/package/input-event-daemon/
H A D0007-Support-hotplug-when-listening-all-devices.patch35 - conf.listen[listen_len++] = strdup(filename);
36 + conf.listen[i] = strdup(filename);
46 - for(i=0; i < MAX_LISTENER && conf.listen[i] != NULL; i++) {
50 + if (!conf.listen[i])
53 fd = open(conf.listen[i], O_RDONLY);
72 + if (!conf.listen[i] || conf.listen_fd[i])
77 - for(i=0; i < MAX_LISTENER && conf.listen[i] != NULL; i++) {
78 conf.listen_fd[i] = open(conf.listen[i], O_RDONLY);
82 - conf.listen[i], strerror(errno));
87 fprintf(stderr, PROGRAM": Adding device: %s...\n", conf.listen[i]);
[all …]
H A D0003-Support-dynamic-remove-devices-when-not-available.patch22 for(i=0; i < MAX_LISTENER && conf.listen[i] != NULL; i++) {
23 conf.listen_fd[i] = open(conf.listen[i], O_RDONLY);
27 conf.listen[i], strerror(errno));
33 + fprintf(stderr, PROGRAM": Adding device: %s...\n", conf.listen[i]);
53 conf.listen[i], strerror(errno));
63 input_parse_event(&event, conf.listen[i]);
H A D0006-Listen-all-devices-by-default.patch20 conf.listen[listen_len++] = strdup(argv[arguments]);
24 - if (!conf.listen[0])
35 + if (!conf.listen[0])
H A D0001-Support-specifing-devices-in-command-args.patch53 + conf.listen[listen_len++] = strdup(argv[arguments]);
58 + if (!conf.listen[0])
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/unfs3/unfs3/
H A D0001-Add-listen-action-for-a-tcp-socket.patch4 Subject: [PATCH] Add "listen" action for a tcp socket which does not call
5 'listen' after 'bind'
22 The root cause is that 'listen' is not called for the binded
23 socket. The depended libtipc does not call 'listen' if found
43 + if (listen(sock, SOMAXCONN) < 0) {
44 + perror("listen");
45 + fprintf(stderr, "Couldn't listen on the address \n");
/OK3568_Linux_fs/buildroot/package/uhttpd/
H A D0002-Fix-TCP_FASTOPEN-related-compile-error.patch8 listen.c | 6 ++++++
11 diff --git a/listen.c b/listen.c
13 --- a/listen.c
14 +++ b/listen.c
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-support/lowpan-tools/lowpan-tools/
H A D0001-Fix-potential-string-truncation-in-strncpy.patch14 tests/listen-packet.c | 3 ++-
15 tests/listen.c | 3 ++-
24 diff --git a/tests/listen-packet.c b/tests/listen-packet.c
26 --- a/tests/listen-packet.c
27 +++ b/tests/listen-packet.c
38 diff --git a/tests/listen.c b/tests/listen.c
40 --- a/tests/listen.c
41 +++ b/tests/listen.c
/OK3568_Linux_fs/buildroot/package/android-tools/
H A D0018-adbd-Support-setting-TCP-port-with-env-ADB_TCP_PORT.patch19 // If one of these properties is set, also listen on that port
20 // If one of the properties isn't set and we couldn't listen on usb,
21 // listen on the default port.
31 // listen on TCP port specified by service.adb.tcp.port property
39 // listen on default port
/OK3568_Linux_fs/buildroot/package/php/
H A Dphp-fpm.conf6 listen = /var/run/php-fpm.sock
7 listen.owner = www-data
8 listen.group = www-data
/OK3568_Linux_fs/kernel/drivers/net/wireless/ath/ath5k/
H A Dani.c377 int listen; in ath5k_hw_ani_get_listen_time() local
385 listen = ath_hw_get_listen_time(common); in ath5k_hw_ani_get_listen_time()
389 return listen; in ath5k_hw_ani_get_listen_time()
478 int listen, ofdm_high, ofdm_low, cck_high, cck_low; in ath5k_ani_calibration() local
483 listen = ath5k_hw_ani_get_listen_time(ah, as); in ath5k_ani_calibration()
484 as->listen_time += listen; in ath5k_ani_calibration()
497 "listen %d (now %d)", as->listen_time, listen); in ath5k_ani_calibration()
/OK3568_Linux_fs/kernel/net/nfc/nci/
H A Dntf.c413 struct activation_params_listen_nfc_dep *listen; in nci_extract_activation_params_nfc_dep() local
428 listen = &ntf->activation_params.listen_nfc_dep; in nci_extract_activation_params_nfc_dep()
429 listen->atr_req_len = min_t(__u8, *data++, in nci_extract_activation_params_nfc_dep()
431 pr_debug("atr_req_len %d\n", listen->atr_req_len); in nci_extract_activation_params_nfc_dep()
432 if (listen->atr_req_len > 0) in nci_extract_activation_params_nfc_dep()
433 memcpy(listen->atr_req, data, listen->atr_req_len); in nci_extract_activation_params_nfc_dep()
543 goto listen; in nci_rf_intf_activated_ntf_packet()
656 listen: in nci_rf_intf_activated_ntf_packet()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-webserver/recipes-httpd/nginx/files/
H A Ddefault_server.site3 listen 80 default_server;
4 listen [::]:80 default_server;
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/php/php/
H A Dphp-fpm.conf252 ; listen queue - the number of request in the queue of pending
253 ; connections (see backlog in listen(2));
254 ; max listen queue - the maximum number of requests in the queue
256 ; listen queue len - the size of the socket queue of pending connections;
272 ; listen queue: 0
273 ; max listen queue: 1
274 ; listen queue len: 42
/OK3568_Linux_fs/kernel/include/xen/interface/io/
H A Dpvcalls.h67 } listen; member
105 } listen; member
/OK3568_Linux_fs/kernel/tools/testing/selftests/wireguard/
H A Dnetns.sh100 listen-port 1 \
106 listen-port 2 \
213 n1 wg set wg0 listen-port 9999
219 n1 wg set wg0 listen-port 9998
234 n2 wg set wg0 listen-port 9997
246 n2 wg set wg0 private-key <(echo "$key2") listen-port 2 peer "$pub1" preshared-key <(echo "$psk") a…
259 n2 wg set wg0 private-key <(echo "$key2") listen-port 2 peer "$pub1" preshared-key <(echo "$psk") a…
268 n1 wg set wg1 listen-port 5 private-key <(echo "$key3") peer "$pub4" allowed-ips 192.168.241.2/32,f…
269 n2 wg set wg1 listen-port 5 private-key <(echo "$key4") peer "$pub3" allowed-ips 192.168.241.1/32,f…
349 n2 wg set wg1 private-key <(echo "$key3") listen-port 5 peer "$pub1" allowed-ips 192.168.242.1/32
/OK3568_Linux_fs/kernel/tools/testing/selftests/net/
H A Dreuseaddr_ports_exhausted.c149 ret = listen(fd[0], 5); in TEST()
152 ret = listen(fd[1], 5); in TEST()
H A Dreuseport_addr_any.c87 if (proto == SOCK_STREAM && listen(rcv_fds[i], 10)) in build_rcv_fd()
95 if (listen(rcv_fds[i], 10)) in build_rcv_fd()
/OK3568_Linux_fs/external/rkwifibt/conf/
H A Ddnsmasq.conf2 listen-address=10.201.126.1
/OK3568_Linux_fs/buildroot/support/testing/tests/package/
H A Dsample_python_twisted.py8 endpoints.serverFromString(reactor, "tcp:1234").listen(F())
/OK3568_Linux_fs/buildroot/board/rockchip/rk3566_rk3568/fs-overlay/etc/
H A Dvsftpd.conf112 listen=YES
/OK3568_Linux_fs/buildroot/board/forlinx/ok3568/fs-overlay/etc/
H A Dvsftpd.conf112 listen=YES
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-daemons/vsftpd/files/
H A Dvsftpd.conf12 listen=YES
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-protocols/rp-pppoe/rp-pppoe/
H A Dpppoe-server.default6 # Device(s) - Space seperated list of devices to listen on
/OK3568_Linux_fs/kernel/crypto/
H A Dalgif_rng.c171 .listen = sock_no_listen,
190 .listen = sock_no_listen,

12345678910>>...12