FAQ » History » Version 9
Pierre-Louis Bonicoli, 2012-01-28 11:55
add questions asked on irc
1 | 1 | Pierre-Louis Bonicoli | h1. FAQ |
---|---|---|---|
2 | |||
3 | 4 | Pierre-Louis Bonicoli | * when building Bip @error: unused parameter@ occurs |
4 | source:configure.ac#L32 use the "AX_C___ATTRIBUTE__":http://www.gnu.org/s/autoconf-archive/ax_c___attribute__.html macro. This macro is included in "autoconf-archive":http://www.gnu.org/software/autoconf-archive/ |
||
5 | 3 | Pierre-Louis Bonicoli | Full error message: |
6 | <pre> |
||
7 | src/connection.c: In function ‘tmp_dh_cb’: |
||
8 | src/connection.c:1093: error: unused parameter ‘ssl_unused’ |
||
9 | make[1]: *** [src/connection.o] Error 1 |
||
10 | </pre> |
||
11 | 6 | Pierre-Louis Bonicoli | Rerun @bootstrap@ script after installation of @autoconf-archive@. |
12 | |||
13 | 8 | Pierre-Louis Bonicoli | * How take in account bip.conf modifications without restarting bip ? |
14 | 5 | Pierre-Louis Bonicoli | Send signal HUP to bip. |
15 | <pre> |
||
16 | # Debian / Ubuntu |
||
17 | /etc/init.d/bip reload |
||
18 | # Other |
||
19 | killall -HUP bip |
||
20 | 6 | Pierre-Louis Bonicoli | </pre> |
21 | |||
22 | * Ubuntu 10.04: How to compile bip from repository ? |
||
23 | <pre> |
||
24 | sudo apt-get install git-core gcc flex bison libssl-dev automake autoconf-archive |
||
25 | ./bootstrap |
||
26 | ./configure --prefix=/opt/bip |
||
27 | CFLAGS="-Wno-error" ./configure --prefix=/opt/bip |
||
28 | make |
||
29 | 5 | Pierre-Louis Bonicoli | </pre> |
30 | 9 | Pierre-Louis Bonicoli | |
31 | |||
32 | * Is there a limit on the number of lines bip saves for each channel ? |
||
33 | See backlog_lines option when backlog is then stored into memory. |
||
34 | |||
35 | * Does bip try to connect to IRC servers automatically after bip is started ? |
||
36 | Yes. But note that Bip will not connect to a network if there is no connection using this network. |
||
37 | |||
38 | * Does bip have a command that displays list of networks in bip.conf ? |
||
39 | There is a "/BIP LIST" command. Admin could use "/BIP LIST networks|users|connections|all_links|all_connections" while user could use "/BIP LIST networks|connections". |
||
40 | |||
41 | * Does bip support modules ? |
||
42 | No |
||
43 | |||
44 | * How to send command to bip ? |
||
45 | Use "/BIP command" or "/quote BIP command" or "/query -BIP command" |