ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/include/s_bsd.h
Revision 8752 - (view) (annotate) - [select for diffs]
Modified Tue Jan 1 11:07:01 2019 UTC (5 years, 3 months ago) by michael
File length: 2294 byte(s)
Diff to previous 8660
- Update copyright years

Revision 8660 - (view) (annotate) - [select for diffs]
Modified Sun Nov 18 12:55:59 2018 UTC (5 years, 4 months ago) by michael
File length: 2294 byte(s)
Diff to previous 8431
- Make use of the bool data type in some more places

Revision 8431 - (view) (annotate) - [select for diffs]
Modified Tue Mar 27 18:49:15 2018 UTC (6 years ago) by michael
File length: 2293 byte(s)
Diff to previous 8414
- Stylistic changes

Revision 8414 - (view) (annotate) - [select for diffs]
Modified Thu Mar 22 18:11:39 2018 UTC (6 years ago) by michael
File length: 2283 byte(s)
Diff to previous 8393
- Rename some functions to comply with naming convention

Revision 8393 - (view) (annotate) - [select for diffs]
Modified Sun Mar 18 12:54:22 2018 UTC (6 years, 1 month ago) by michael
File length: 2266 byte(s)
Diff to previous 8339
- Move close_connection() from s_bsd.c to client.c

Revision 8339 - (view) (annotate) - [select for diffs]
Modified Sat Mar 3 22:47:06 2018 UTC (6 years, 1 month ago) by michael
File length: 2313 byte(s)
Diff to previous 8279
- Restore fd_table. No longer allocate fde_t items from within any other structures like the AuthRequest, or Connection structure
- struct AuthRequest once again is no longer allocated from within the Connection structure

Revision 8279 - (view) (annotate) - [select for diffs]
Modified Tue Feb 20 19:30:13 2018 UTC (6 years, 1 month ago) by michael
File length: 2344 byte(s)
Diff to previous 8253
- Update copyright years

Revision 8253 - (view) (annotate) - [select for diffs]
Modified Mon May 22 19:29:26 2017 UTC (6 years, 10 months ago) by michael
File length: 2344 byte(s)
Diff to previous 7924
- Have s_bsd.c:comm_accept() take a fde_t pointer instead of a struct Listener

Revision 7924 - (view) (annotate) - [select for diffs]
Modified Sat Dec 31 13:57:08 2016 UTC (7 years, 3 months ago) by michael
File length: 2354 byte(s)
Diff to previous 7668
- Update copyright years

Revision 7668 - (view) (annotate) - [select for diffs]
Modified Wed Jul 20 17:09:49 2016 UTC (7 years, 8 months ago) by michael
File length: 2354 byte(s)
Diff to previous 7566
- Fixed svn properties

Revision 7566 - (view) (annotate) - [select for diffs]
Modified Tue May 24 16:23:36 2016 UTC (7 years, 10 months ago) by michael
File length: 2354 byte(s)
Diff to previous 7330
- Rename init_netio() to netio_init()

Revision 7330 - (view) (annotate) - [select for diffs]
Modified Fri Feb 19 17:50:13 2016 UTC (8 years, 1 month ago) by michael
File length: 2354 byte(s)
Diff to previous 7326
- Now that we got time_t to work nicely on openbsd with snprintf's conversion specifiers,
  we ran into a similiar issue on Raspbian/ARMv7's time_t which is of signed 32 bit and
  doesn't cope at all with %j. Instead of doing tricks, get rid of time_t everywhere and
  forever and use uintmax_t instead which has at least a 'standardized' conversion specifier
  associated with it.

Revision 7326 - (view) (annotate) - [select for diffs]
Modified Tue Feb 16 17:33:39 2016 UTC (8 years, 2 months ago) by michael
File length: 2342 byte(s)
Diff to previous 7006
- Remove useless header includes

Revision 7006 - (view) (annotate) - [select for diffs]
Modified Fri Jan 1 00:07:54 2016 UTC (8 years, 3 months ago) by michael
File length: 2362 byte(s)
Diff to previous 6951
- Update copyright years

Revision 6951 - (view) (annotate) - [select for diffs]
Modified Tue Dec 15 19:11:07 2015 UTC (8 years, 4 months ago) by michael
File length: 2362 byte(s)
Diff to previous 6363
- s_bsd.h, s_bsd.c:comm_connect_tcp(): change the 'timeout' parameter to a time_t to match up with the other comm_* functions

Revision 6363 - (view) (annotate) - [select for diffs]
Modified Wed Aug 19 09:59:26 2015 UTC (8 years, 7 months ago) by michael
File length: 2359 byte(s)
Diff to previous 6323
- Remove unused header includes

Revision 6323 - (view) (annotate) - [select for diffs]
Modified Sat Aug 8 17:47:58 2015 UTC (8 years, 8 months ago) by michael
File length: 2376 byte(s)
Diff to previous 5347
- Make use of enum in more places

Revision 5347 - (view) (annotate) - [select for diffs]
Modified Sun Jan 11 12:42:20 2015 UTC (9 years, 3 months ago) by michael
File length: 2430 byte(s)
Diff to previous 4565
- Update copyright years

Revision 4565 - (view) (annotate) - [select for diffs]
Modified Sun Aug 24 10:27:40 2014 UTC (9 years, 7 months ago) by michael
File length: 2430 byte(s)
Diff to previous 4464
- Update GPL 2 license headers

Revision 4464 - (view) (annotate) - [select for diffs]
Modified Wed Aug 13 17:28:00 2014 UTC (9 years, 8 months ago) by michael
File length: 2426 byte(s)
Diff to previous 4461
- Removed CNCB typedef

Revision 4461 - (view) (annotate) - [select for diffs]
Modified Wed Aug 13 17:05:26 2014 UTC (9 years, 8 months ago) by michael
File length: 2399 byte(s)
Diff to previous 4415
- Removed stupid PF typedef in fdlist.h which prevented both gcc and clang from spitting out
  a warning about the first argument of s_bsd:ssl_handshake() being an 'int' when it really
  has to be a 'fde_t' pointer.
- Fixed first argument of s_bsd:ssl_handshake() which should be a 'fde_t' pointer instead of an 'int'.

Revision 4415 - (view) (annotate) - [select for diffs]
Modified Thu Aug 7 14:09:36 2014 UTC (9 years, 8 months ago) by michael
File length: 2336 byte(s)
Diff to previous 4245
- Removed ipv6 detection. We now assume all systems that run hybrid have
  ipv6 availability and sockaddr_storage.

Revision 4245 - (view) (annotate) - [select for diffs]
Modified Thu Jul 17 19:15:05 2014 UTC (9 years, 9 months ago) by michael
File length: 2391 byte(s)
Diff to previous 2865
- auth.h, s_bsd.h: removed unused function declarations

Revision 2865 - (view) (annotate) - [select for diffs]
Modified Sun Jan 19 14:35:22 2014 UTC (10 years, 2 months ago) by michael
File length: 2440 byte(s)
Diff to previous 2632
- Clean up all files in include/ (fixed indentation, removed whitespaces/tabs)
- Fixed copyright years

Revision 2632 - (view) (annotate) - [select for diffs]
Modified Sun Dec 8 18:33:48 2013 UTC (10 years, 4 months ago) by michael
File length: 2405 byte(s)
Diff to previous 1666
- Removed setup_socket callback
- Removed init_comm() as init_netio() can be called directly

Revision 1666 - (view) (annotate) - [select for diffs]
Modified Sun Nov 18 17:03:18 2012 UTC (11 years, 4 months ago) by michael
File length: 2476 byte(s)
Diff to previous 1632
- Cleanup unused header file includes
- Fixed minor compile warning in conf.c

Revision 1632 - (view) (annotate) - [select for diffs]
Modified Sun Nov 4 15:37:10 2012 UTC (11 years, 5 months ago) by michael
File length: 2494 byte(s)
Diff to previous 1592
- Initial rewrite of the configuration subsystem

Revision 1592 - (view) (annotate) - [select for diffs]
Modified Sat Oct 27 21:02:32 2012 UTC (11 years, 5 months ago) by michael
File length: 2496 byte(s)
Diff to previous 1156
- Second time's the charm? Moving svnroot/ircd-hybrid-8 to
  svnroot/ircd-hybrid/trunk

Revision 1156 - (view) (annotate) - [select for diffs]
Modified Tue Aug 9 20:29:20 2011 UTC (12 years, 8 months ago) by michael
Original Path: ircd-hybrid-8/include/s_bsd.h
File length: 2496 byte(s)
Diff to previous 1155
- create ircd-hybrid-8 "branch"

Revision 1155 - (view) (annotate) - [select for diffs]
Modified Tue Aug 9 20:27:45 2011 UTC (12 years, 8 months ago) by michael
Original Path: ircd-hybrid/include/s_bsd.h
File length: 2496 byte(s)
Diff to previous 1029
- recreate "trunk"

Revision 1029 - (view) (annotate) - [select for diffs]
Modified Sun Nov 8 13:10:50 2009 UTC (14 years, 5 months ago) by michael
Original Path: ircd-hybrid-7.3/include/s_bsd.h
File length: 2496 byte(s)
Diff to previous 1028
- branch off trunk to create 7.3 branch
Revision 1028 - (view) (annotate) - [select for diffs]
Modified Sun Nov 8 13:03:38 2009 UTC (14 years, 5 months ago) by michael
Original Path: ircd-hybrid/include/s_bsd.h
File length: 2496 byte(s)
Diff to previous 1000
- move ircd-hybrid-7.2 to trunk

Revision 1000 - (view) (annotate) - [select for diffs]
Modified Mon Aug 24 13:37:39 2009 UTC (14 years, 7 months ago) by michael
Original Path: ircd-hybrid-7.2/include/s_bsd.h
File length: 2496 byte(s)
Diff to previous 999
- timeout_auth_queries_event(): don't try to close auth->fd twice

Revision 999 - (view) (annotate) - [select for diffs]
Modified Sun Aug 23 15:23:34 2009 UTC (14 years, 7 months ago) by michael
Original Path: ircd-hybrid-7.2/include/s_bsd.h
File length: 2608 byte(s)
Diff to previous 950
- removed references to struct DNSReply

Revision 950 - (view) (annotate) - [select for diffs]
Modified Tue Jul 21 23:07:52 2009 UTC (14 years, 8 months ago) by michael
Original Path: ircd-hybrid-7.2/include/s_bsd.h
File length: 2625 byte(s)
Diff to previous 912
- squash several compile warnings

Revision 912 - (view) (annotate) - [select for diffs]
Modified Wed Nov 7 22:47:44 2007 UTC (16 years, 5 months ago) by michael
Original Path: ircd-hybrid-7.2/include/s_bsd.h
File length: 2595 byte(s)
Diff to previous 549
- Implemented libtool-ltdl. Only shared modules are supported currently
- Several build fixes and cleanups. ircd now builds and runs without any problems
- Added back all files to SVN that are needed to built the daemon
  I really don't want to force other people that want to test the snapshots
  or svn versions to install yyacc, lex, automake, autoconf and libtool...
  No problem having required files in svn
- Removed some automake maintainer stuff which is kinda useless for us

Revision 549 - (view) (annotate) - [select for diffs]
Modified Thu Apr 20 12:46:18 2006 UTC (18 years ago) by michael
Original Path: ircd-hybrid-7.2/include/s_bsd.h
File length: 2594 byte(s)
Diff to previous 34
- Backported add_connection() speedups

Revision 34 - (view) (annotate) - [select for diffs]
Modified Sun Oct 2 21:05:51 2005 UTC (18 years, 6 months ago) by lusky
Original Path: ircd-hybrid-7.2/include/s_bsd.h
File length: 2573 byte(s)
Diff to previous 33
create 7.2 branch, we can move/rename it as needed.


Revision 33 - (view) (annotate) - [select for diffs]
Modified Sun Oct 2 20:50:00 2005 UTC (18 years, 6 months ago) by knight
Original Path: ircd-hybrid/include/s_bsd.h
File length: 2573 byte(s)
Diff to previous 32
- svn:keywords

Revision 32 - (view) (annotate) - [select for diffs]
Modified Sun Oct 2 20:41:23 2005 UTC (18 years, 6 months ago) by knight
Original Path: ircd-hybrid/include/s_bsd.h
File length: 2573 byte(s)
Diff to previous 31
- svn:keywords

Revision 31 - (view) (annotate) - [select for diffs]
Modified Sun Oct 2 20:34:05 2005 UTC (18 years, 6 months ago) by knight
Original Path: ircd-hybrid/include/s_bsd.h
File length: 2573 byte(s)
Diff to previous 30
- Fix svn:keywords

Revision 30 - (view) (annotate) - [select for diffs]
Added Sun Oct 2 20:03:27 2005 UTC (18 years, 6 months ago) by adx
Original Path: ircd-hybrid/include/s_bsd.h
File length: 2618 byte(s)
- imported sources
- can be moved later according to the directory/branching scheme,
  but we need the svn up

Convenience Links

Links to HEAD: (view) (annotate)

Compare Revisions

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a