Page History
- 2012-Nov-13 16:18 adesmet
- 2011-Jun-03 20:19 m
- 2011-Jun-03 20:17 m
- 2011-Jun-03 20:17 m
- 2011-Jun-03 20:12 m
- 2011-Jun-03 18:49 m
- 2011-Jun-03 18:47 m
- 2011-May-30 21:42 m
- 2011-May-25 23:36 m
- 2011-May-25 23:31 m
- 2011-May-20 14:39 m
- 2011-May-20 14:30 m
- 2011-Apr-21 16:20 m
- 2011-Apr-21 16:16 m
- 2011-Apr-20 17:14 m
- 2011-Apr-20 15:22 m
- 2011-Apr-19 19:36 m
- 2010-Dec-08 11:38 m
- 2010-Dec-08 11:37 m
- 2010-Nov-16 01:06 m
- 2010-Nov-09 17:08 m
- 2010-Nov-09 16:56 m
- 2010-Nov-09 16:53 m
- 2010-Nov-09 16:45 m
- 2010-Nov-09 16:38 m
- 2010-Nov-09 16:34 m
- 2010-Nov-09 15:20 m
- 2010-Nov-08 17:37 m
- 2010-Nov-08 17:34 m
- 2010-Nov-08 17:11 m
- 2010-Nov-08 17:09 m
- 2010-Nov-08 17:08 m
- 2010-Nov-08 15:49 m
- 2010-Nov-08 15:39 m
- 2010-Oct-27 18:13 m
- 2010-Oct-27 18:12 m
- 2010-Oct-27 18:11 m
- 2010-Oct-27 18:09 m
- 2010-Oct-27 18:06 m
- 2010-Oct-27 18:05 m
- 2010-Oct-27 18:03 m
- 2010-Oct-27 17:08 m
- 2010-Oct-27 17:07 m
- 2010-Oct-27 17:01 m
- 2010-Oct-22 16:19 m
- 2010-Oct-22 16:16 m
- 2010-Oct-22 16:15 m
- 2010-Oct-21 15:59 m
- 2010-Oct-18 19:19 m
- 2010-Oct-11 23:54 m
- 2010-Oct-07 14:12 m
- 2010-Oct-07 13:31 m
- 2010-Sep-08 11:25 adesmet
- 2010-Mar-12 02:41 m
- 2010-Mar-12 02:37 m
- 2010-Mar-12 02:36 m
- 2010-Mar-09 16:52 m
- 2010-Mar-09 16:32 m
- 2010-Mar-03 15:11 m
- 2010-Mar-03 15:10 m
- 2010-Mar-03 14:22 m
- 2010-Mar-02 17:55 m
- 2010-Mar-02 16:27 m
- 2010-Mar-01 17:02 m
- 2010-Mar-01 16:52 m
- 2010-Mar-01 16:25 m
- 2010-Mar-01 15:18 m
- 2010-Feb-24 16:58 m
- 2010-Feb-24 16:54 m
- 2010-Feb-24 14:07 m
- 2010-Feb-24 14:06 m
- 2010-Feb-24 02:02 m
- 2010-Feb-24 01:59 m
- 2010-Feb-05 03:40 m
- 2010-Feb-05 03:23 m
- 2010-Feb-05 03:22 m
currently working on
KeyCache, uses sockaddr_in for storing ip addr. before modify, be sure to look at the overall picture.
Note for constants
Don't forget constants that should be adjusted!
MAXMACHNAME : seen in file_transfer_db.c, stores the result of sin_to_hostname.
IpVerify
[zach] implemented by mostly Todd, and little bit by Zach and Dan.
IpVerify verifies the remote process's ip from the configuration file. There are many lines that are referring to DCpermission. I am bit confused here. I do not understand what 'DCpermission' made for.
Ulrich Mystery
Ulrich's Userlevel IPv6 Programming Introductionn - http://people.redhat.com/drepper/userapi-ipv6.html
He denotes gethostbyaddr() as an obsolete. However, gethostbyaddr() accepts a socket type as a parameter. (AF_INET, AF_INET6) That means it should work well with IPv6. Why it is obsolete??
Converting Sock
Sock is not only used by TCP/UDP connection but also used by Unix domain socket (AF_UNIX). Basically, Sock can only create TCP or UDP socket internally but SharedEndPoint and SharedPortClient creates Unix domain socket and calls Sock::assign() to pass the descriptor.
I guess this is broken abstraction since Sock has IP related functions such as peer_addr() or peer_port() which are not available to Unix domain socket.
It seems assign() is only used by these Shared* thing. So maybe we could end up with refactoring it.
What is it?
TCP_FORWARDING_HOST ?