
SecDet
19.10.2016
20:36:55
А где работаешь?))

H
19.10.2016
20:37:38

here1am
19.10.2016
20:37:43
мы вам перезвоним

Stanislav
19.10.2016
20:37:58
Стань моим вендором полностью

Google

Stanislav
19.10.2016
20:38:02
Наркоман

SecDet
19.10.2016
20:38:21
Что за ос?

Nikolay
19.10.2016
20:38:28
ЧТО ЗА ОС?

SecDet
19.10.2016
20:38:43
Отвечай

Pavel
19.10.2016
20:38:50
зачем постоянно пялится в аптайм, свободную память и т.п.?

SecDet
19.10.2016
20:39:18
Вы тут все линуксоиды что-ли?

Pavel
19.10.2016
20:39:56
"круто, сегодня у меня аптайм на сутки больше чем вчера"

Nikolay
19.10.2016
20:40:00

Sergey
19.10.2016
20:40:19
это третий гном? как там живется?

Nikolay
19.10.2016
20:40:28
чтоб в сваоп не уходить, ато больно
свидители гнома3

SecDet
19.10.2016
20:41:45
А зачем вам линукс?

Nikolay
19.10.2016
20:42:21
денег нет на мак

Google

Nikolay
19.10.2016
20:42:27
и на железо, достаточное для него
поэтому так
а если и есть денег н мак, то жаюа душит, либо идеологически

CthUlhUzzz
19.10.2016
20:48:08
Кто в сокетах шарит

Ssi
19.10.2016
20:48:17

CthUlhUzzz
19.10.2016
20:48:39
Кто в сокетах шарит
Есть ли возможность использовать повторно закрытый сокет? Или нужно создавать каждый раз?

here1am
19.10.2016
20:49:25
будешь новичком?

Artem
19.10.2016
20:49:58
расскажи, какие инструменты ты используешь для тестирования своего кода.

Anton
19.10.2016
20:52:00

SecDet
19.10.2016
20:59:56
После закрытия вновь для использования соединяешься

Kolyann
19.10.2016
20:59:59
Переоткрытие сокета?
http://stackoverflow.com/questions/1410723/is-there-a-way-to-reopen-a-socket

Pavel
19.10.2016
21:00:24

SecDet
19.10.2016
21:01:13
Закрытие сокета это просто закрытие соединения
Но потом этот сокет можно вновь использовать для его подключения

Anton
19.10.2016
21:10:43
когда закрывается сокет, то на уровне сети (если мы говорим про TCP) идёт сообщение на удалённый хост, что всё, мы закончили, и та сторона закрывает соединение со своей стороны. Очевидно, что если пытаться заюзать этот сокет ещё раз, то ничего не получится.
ну да, syn-close и всё, какой сокет, откуда взять, как минимум едро сразу забудет о нём

Pavel
19.10.2016
21:16:20

Roman
19.10.2016
21:17:21

Anton
19.10.2016
21:17:33
конечно

SecDet
19.10.2016
21:18:49

Google

SecDet
19.10.2016
21:19:06
Хотя, я не уверен
Давно работал с tcp протоколом

Roman
19.10.2016
21:26:18

SecDet
19.10.2016
21:29:10
Посоветуйте дистрибутив линукс
Какой лучше?

Anton
19.10.2016
21:29:55
ну ты прям с козырей зашёл

Belskikh
19.10.2016
21:32:38
Ubuntu же

Dan
19.10.2016
21:32:53

Yuryhalf
19.10.2016
21:33:14

[Anonymous]
19.10.2016
21:33:57
Fedora

Yuryhalf
19.10.2016
21:34:18
а если умеешь копаццо в ядре то любой вообще))

Мерлин
19.10.2016
21:34:28
Я вот Ubuntu mint накатил и доволен

Belskikh
19.10.2016
21:34:49
Какой лучше?
Ставь Ubuntu, по ней больше всего инфы, довольно просто въехать. Потом разберешься, какие ещё бывают.
Сейчас asyncio трендится вообще? Или Go победил?
Я чо-то не пойму

Nikolay
19.10.2016
21:37:54
как и много чего остального
в т.ч. UI

Admin
ERROR: S client not available

Google

Nikolay
19.10.2016
21:38:18
короче, я устал от всего этого

Roman
19.10.2016
21:39:23

Anton
19.10.2016
21:41:43

Yuryhalf
19.10.2016
21:42:13

Anton
19.10.2016
21:42:43


Nikolay
19.10.2016
21:43:15
Родной
Back in the Windows 3 days when Winsock was invented, Windows C++ compilers all had some kind of POSIX API wrapper to provide some basic level of portability, including close(). These just called down into the compiler's stdio implementation, since DOS and Win16 didn't have a unified I/O mechanism like Unices do. You can't just call close() on a descriptor in Win16 and have it work independent of whether it's a file, socket, pipe, whatever. Win32 existed at the same time as Winsock was being invented as part of NT 3.5, and it fixes this, but making Winsock available only on NT derivatives would have made MS irrelevant on the Internet until Windows XP. MS can be slow to the game, but not that slow. Bottom line, anything in BSD sockets that uses POSIX mechanisms that conflicted with existing APIs provided by the C++ compilers that targeted it just couldn't be in Winsock. They had to give the same functionality a new name.


Roman
19.10.2016
21:51:49
Back in the Windows 3 days when Winsock was invented, Windows C++ compilers all had some kind of POSIX API wrapper to provide some basic level of portability, including close(). These just called down into the compiler's stdio implementation, since DOS and Win16 didn't have a unified I/O mechanism like Unices do. You can't just call close() on a descriptor in Win16 and have it work independent of whether it's a file, socket, pipe, whatever. Win32 existed at the same time as Winsock was being invented as part of NT 3.5, and it fixes this, but making Winsock available only on NT derivatives would have made MS irrelevant on the Internet until Windows XP. MS can be slow to the game, but not that slow. Bottom line, anything in BSD sockets that uses POSIX mechanisms that conflicted with existing APIs provided by the C++ compilers that targeted it just couldn't be in Winsock. They had to give the same functionality a new name.
И?

Belskikh
19.10.2016
21:57:46

Anton
19.10.2016
22:00:50

Belskikh
19.10.2016
22:01:17

SecDet
19.10.2016
22:17:04
Debian сложный дистр?

Neko Ex Machina
19.10.2016
22:21:27

SecDet
19.10.2016
22:21:41
ИБ)))

Neko Ex Machina
19.10.2016
22:23:02
инф безопасность?
если оно, то всяко лучше винды

SecDet
19.10.2016
22:27:09
Да
То есть для этого особо не нужно на линукс переходить?
На форточке можно?

Bo0oM
19.10.2016
22:28:35
Можно
Но это не иб чад

Google

Bo0oM
19.10.2016
22:28:55
DC7499
The DEF CON Groups are a gathering point for folks interested in the alternate applications of modern technology, referred to properly as 'hacking'.
http://defcon.su
https://twitter.com/DC7499
https://telegram.me/DC7499
Суйся
А тут про питон

SecDet
19.10.2016
22:29:28
Ty

giudice
20.10.2016
03:11:23
минт ставьте и не выебывайтесь школьными арчами, красноглазыми гентами и дедовскими дебианами

v
20.10.2016
03:21:53

Dmitri
20.10.2016
03:29:26
Родной
Родной в том смысле, что BSD-стек для винды родной?